showNfcChipPosition method

  1. @override
Future<bool> showNfcChipPosition(
  1. Map<String, dynamic> data
)
override

Implementation

@override
Future<bool> showNfcChipPosition(Map<String, dynamic> data) async {
  try {
    final ok = await methodChannel.invokeMethod<bool>('show_nfc_chip_indicator', data);
    return ok ?? false;
  } on PlatformException {
    return false;
  }
}