FeliCa constructor

const FeliCa({
  1. required NfcTag tag,
  2. required Uint8List currentSystemCode,
  3. required Uint8List currentIDm,
})

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

Implementation

const FeliCa({
  required NfcTag tag,
  required this.currentSystemCode,
  required this.currentIDm,
}) : _tag = tag;