I want show card number using NFC. But I only can get uid from nfc tag. I'm using nfc_manager package and my code like this :
void _tagRead() {
NfcManager.instance.startSession(onDiscovered: (NfcTag tag) async {
var _tag = tag.data["isodep"]["identifier"]
.map((e) => e.toRadixString(16).padLeft(2, '0'))
.join('');
NfcManager.instance.stopSession();
});
}
Dont understand what can I do with this id ?