onCustomTapProductCard property Null safety

CustomTapProductCardCallback? onCustomTapProductCard

Implementation

CustomTapProductCardCallback? get onCustomTapProductCard =>
    _onCustomTapProductCard;
void onCustomTapProductCard=(CustomTapProductCardCallback? value)

Implementation

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