FakeTech.nfcF constructor

FakeTech.nfcF({
  1. Uint8List? manufacturer,
  2. Uint8List? systemCode,
  3. int maxTransceiveLength = _maxTransceiveLength,
  4. Duration timeout = _timeout,
})

android.nfc.tech.NfcF. JIS 6319-4, the FeliCa transport.

Implementation

factory FakeTech.nfcF({
  Uint8List? manufacturer,
  Uint8List? systemCode,
  int maxTransceiveLength = _maxTransceiveLength,
  Duration timeout = _timeout,
}) => FakeTech._(
  'NfcF',
  (data) => data.nfcF = NfcFPigeon(
    manufacturer: manufacturer,
    systemCode: systemCode,
    maxTransceiveLength: maxTransceiveLength,
    timeout: timeout.inMilliseconds,
  ),
);