startNfcHce method

  1. @override
Future<String?> startNfcHce(
  1. String content,
  2. String mimeType,
  3. bool persistMessage
)
override

Implementation

@override
Future<String?> startNfcHce(
    String content,
    String mimeType,
    bool persistMessage,
    ) async {
  return await methodChannel.invokeMethod<String>(
    'startNfcHce',
    <String, dynamic>{
      'content': content,
      'mimeType': mimeType,
      'persistMessage': persistMessage,
    },
  );
}