Iso7816 constructor

const Iso7816({
  1. required NfcTag tag,
  2. required Uint8List identifier,
  3. required String initialSelectedAID,
  4. required Uint8List? historicalBytes,
  5. required Uint8List? applicationData,
  6. required bool proprietaryApplicationDataCoding,
})

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

Implementation

const Iso7816({
  required NfcTag tag,
  required this.identifier,
  required this.initialSelectedAID,
  required this.historicalBytes,
  required this.applicationData,
  required this.proprietaryApplicationDataCoding,
}) : _tag = tag;