piccNfc method
Implementation
@override
Future<String?> piccNfc(List<int> nfcDataLen, List<int> technology, List<int> nfcUid, List<int> ndefMessage) async {
final Map<String, dynamic> args = <String, dynamic>{
'nfcDataLen': nfcDataLen,
'technology': technology,
'nfcUid': nfcUid,
'ndefMessage': ndefMessage,
};
return await methodChannel.invokeMethod<String>('PiccNfc', args);
}