FakeTech.nfcA constructor
FakeTech.nfcA({})
android.nfc.tech.NfcA. ISO 14443-3A.
Implementation
factory FakeTech.nfcA({
Uint8List? atqa,
int sak = 0x08,
int maxTransceiveLength = _maxTransceiveLength,
Duration timeout = _timeout,
}) => FakeTech._(
'NfcA',
(data) => data.nfcA = NfcAPigeon(
atqa: atqa,
sak: sak,
maxTransceiveLength: maxTransceiveLength,
timeout: timeout.inMilliseconds,
),
);