FakeTech.nfcB constructor
FakeTech.nfcB({})
android.nfc.tech.NfcB. ISO 14443-3B.
Implementation
factory FakeTech.nfcB({
Uint8List? applicationData,
Uint8List? protocolInfo,
int maxTransceiveLength = _maxTransceiveLength,
}) => FakeTech._(
'NfcB',
(data) => data.nfcB = NfcBPigeon(
applicationData: applicationData,
protocolInfo: protocolInfo,
maxTransceiveLength: maxTransceiveLength,
),
);