MiFare constructor
const
MiFare({
- required NfcTag tag,
- required MiFareFamily mifareFamily,
- required Uint8List identifier,
- required Uint8List? historicalBytes,
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 MiFare.from
are valid.
Implementation
const MiFare({
required NfcTag tag,
required this.mifareFamily,
required this.identifier,
required this.historicalBytes,
}) : _tag = tag;