NfcA constructor

const NfcA({
  1. required NfcTag tag,
  2. required Uint8List identifier,
  3. required Uint8List atqa,
  4. required int sak,
  5. required int maxTransceiveLength,
  6. required int timeout,
})

Constructs an instance with the given values for testing.

The instances constructs by this way are not valid in the production environment. Only instances obtained from the NfcA.from are valid.

Implementation

const NfcA({
  required NfcTag tag,
  required this.identifier,
  required this.atqa,
  required this.sak,
  required this.maxTransceiveLength,
  required this.timeout,
}) : _tag = tag;