FakeTech.nfcV constructor

FakeTech.nfcV({
  1. int dsfId = 0,
  2. int responseFlags = 0,
  3. int maxTransceiveLength = _maxTransceiveLength,
})

android.nfc.tech.NfcV. ISO 15693, which iOS reaches through FakeTech.iso15693.

Implementation

factory FakeTech.nfcV({
  int dsfId = 0,
  int responseFlags = 0,
  int maxTransceiveLength = _maxTransceiveLength,
}) => FakeTech._(
  'NfcV',
  (data) => data.nfcV = NfcVPigeon(
    dsfId: dsfId,
    responseFlags: responseFlags,
    maxTransceiveLength: maxTransceiveLength,
  ),
);