FakeTech.isoDep constructor
FakeTech.isoDep({})
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,
),
);