getSystemInfoAndUid method

Future<Iso15693SystemInfo> getSystemInfoAndUid({
  1. required Set<Iso15693RequestFlag> requestFlags,
})

Reads the tag's own description, Iso15693SystemInfo.uid included.

This is getSystemInfoAndUIDWithRequestFlag:, which Apple added in iOS 14 to replace the selector getSystemInfo calls. Same command on the wire (0x2B); the difference is that this one hands back the UID the tag sent with the rest.

Implementation

Future<Iso15693SystemInfo> getSystemInfoAndUid({required Set<Iso15693RequestFlag> requestFlags}) async =>
    _systemInfo(await iosApi.iso15693GetSystemInfoAndUid(_handle, _flags(requestFlags)));