FakeTech.isoDep constructor

FakeTech.isoDep({
  1. Uint8List? hiLayerResponse,
  2. Uint8List? historicalBytes,
  3. bool isExtendedLengthApduSupported = false,
  4. int maxTransceiveLength = _maxTransceiveLength,
  5. Duration timeout = _timeout,
})

android.nfc.tech.IsoDep. ISO 14443-4, which is what an APDU rides on.

Implementation

factory FakeTech.isoDep({
  Uint8List? hiLayerResponse,
  Uint8List? historicalBytes,
  bool isExtendedLengthApduSupported = false,
  int maxTransceiveLength = _maxTransceiveLength,
  Duration timeout = _timeout,
}) => FakeTech._(
  'IsoDep',
  (data) => data.isoDep = IsoDepPigeon(
    hiLayerResponse: hiLayerResponse,
    historicalBytes: historicalBytes,
    isExtendedLengthApduSupported: isExtendedLengthApduSupported,
    maxTransceiveLength: maxTransceiveLength,
    timeout: timeout.inMilliseconds,
  ),
);