FakeTech.nfcA constructor

FakeTech.nfcA({
  1. Uint8List? atqa,
  2. int sak = 0x08,
  3. int maxTransceiveLength = _maxTransceiveLength,
  4. Duration timeout = _timeout,
})

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