piccNfc method

  1. @override
Future<String?> piccNfc(
  1. List<int> nfcDataLen,
  2. List<int> technology,
  3. List<int> nfcUid,
  4. List<int> ndefMessage,
)
override

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);
}