Iso15693 constructor

const Iso15693({
  1. required NfcTag tag,
  2. required Uint8List identifier,
  3. required int icManufacturerCode,
  4. required Uint8List icSerialNumber,
})

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 Iso15693.from are valid.

Implementation

const Iso15693({
  required NfcTag tag,
  required this.identifier,
  required this.icManufacturerCode,
  required this.icSerialNumber,
}) : _tag = tag;