FakeTech.nfcB constructor

FakeTech.nfcB({
  1. Uint8List? applicationData,
  2. Uint8List? protocolInfo,
  3. int maxTransceiveLength = _maxTransceiveLength,
})

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,
  ),
);