onCustomCTAClick property
The callback of clicking custom CTA.
Implementation
CustomCTAClickCallback? get onCustomCTAClick => _onCustomCTAClick;
Implementation
set onCustomCTAClick(CustomCTAClickCallback? newValue) {
_onCustomCTAClick = newValue;
final nativeMethodName =
FireworkSDKNativeMethodName.setCustomCTAClickEnabled.name;
FWMethodChannelUtil.getFirewokSDKChannel()
.invokeMethod(nativeMethodName, newValue != null);
}