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