Open wrjcs opened 4 years ago
Hello, I faced the same problem in the end I found a solution:
final ndef = Ndef.from(tag);
var payload = ndef!.cachedMessage!.records[0].payload;
var sub = payload.sublist(payload[0] + 1);
String tagRecordText = String.fromCharCodes(sub);
result.value = tagRecordText;
print("${tagRecordText}");
Hello, I use this plugin to read the mifare card. this is the data read by plugin: {nfca: {identifier: [199, 255, 228, 52], atqa: [4, 0], maxTransceiveLength: 253, sak: 8, timeout: 618}, mifareclassic: {identifier: [199, 255, 228, 52], blockCount: 64, maxTransceiveLength: 253, sectorCount: 16, size: 1024, timeout: 618, type: 0}, ndefformatable: {identifier: [199, 255, 228, 52]}} an this is the data read by lector in windows: 0887422919
How can I read the same data as the lector in windows? Thanks.