NfcV class

The class provides access to NfcV API for Android.

Acquire NfcV instance using NfcV.from.

Constructors

NfcV({required NfcTag tag, required Uint8List identifier, required int dsfId, required int responseFlags, required int maxTransceiveLength})
Constructs an instance with the given values for testing.
const

Properties

dsfId int
The value from NfcV#dsfId on Android.
final
hashCode int
The hash code for this object.
no setterinherited
identifier Uint8List
The value from Tag#id on Android.
final
maxTransceiveLength int
The value from NfcV#maxTransceiveLength on Android.
final
responseFlags int
The value from NfcV#responseFlags on Android.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
transceive({required Uint8List data}) Future<Uint8List>
Sends the NfcV command to the tag.

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

from(NfcTag tag) NfcV?
Get an instance of NfcV for the given tag.