onCustomTapProductCard property Null safety
Implementation
CustomTapProductCardCallback? get onCustomTapProductCard =>
_onCustomTapProductCard;
Implementation
set onCustomTapProductCard(CustomTapProductCardCallback? value) {
_onCustomTapProductCard = value;
final nativeMethodName =
ShoppingNativeMethodName.setCustomTapProductCardEnabled.name;
FWMethodChannelUtil.getShoppingChannel().invokeMethod(
nativeMethodName,
value != null,
);
}