hideNfcChipPosition method
Implementation
@override
Future<bool> hideNfcChipPosition() async {
if (!Platform.isAndroid) {
return false;
}
try {
final ok = await methodChannel.invokeMethod<bool>('hide_nfc_chip_indicator');
return ok ?? false;
} on PlatformException {
return false;
}
}