FakeTech.nfcF constructor
FakeTech.nfcF({})
android.nfc.tech.NfcF. JIS 6319-4, the FeliCa transport.
Implementation
factory FakeTech.nfcF({
Uint8List? manufacturer,
Uint8List? systemCode,
int maxTransceiveLength = _maxTransceiveLength,
Duration timeout = _timeout,
}) => FakeTech._(
'NfcF',
(data) => data.nfcF = NfcFPigeon(
manufacturer: manufacturer,
systemCode: systemCode,
maxTransceiveLength: maxTransceiveLength,
timeout: timeout.inMilliseconds,
),
);