startNfcHce method
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,
},
);
}