isSecureNfcEnabled method

Future<bool> isSecureNfcEnabled()

Below sdk 29 (Android 10) it always returns false

Implementation

Future<bool> isSecureNfcEnabled() async {
  return await FlutterNfcHcePlatform.instance.isSecureNfcEnabled() == 'true';
}