NfcV constructor

const NfcV({
  1. required NfcTag tag,
  2. required Uint8List identifier,
  3. required int dsfId,
  4. required int responseFlags,
  5. required int maxTransceiveLength,
})

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

Implementation

const NfcV({
  required NfcTag tag,
  required this.identifier,
  required this.dsfId,
  required this.responseFlags,
  required this.maxTransceiveLength,
}) : _tag = tag;