getSystemInfo method

  1. @Deprecated('Apple deprecated the underlying selector in iOS 14; use getSystemInfoAndUid, which also reports the UID.')
Future<Iso15693SystemInfo> getSystemInfo({
  1. required Set<Iso15693RequestFlag> requestFlags,
})

Reads the tag's own description: block size, block count, AFI and DSFID.

Apple deprecated the selector behind this in iOS 14 and it reports no UID.

Implementation

@Deprecated(
  'Apple deprecated the underlying selector in iOS 14; use getSystemInfoAndUid, which also reports the UID.',
)
Future<Iso15693SystemInfo> getSystemInfo({required Set<Iso15693RequestFlag> requestFlags}) async =>
    _systemInfo(await iosApi.iso15693GetSystemInfo(_handle, _flags(requestFlags)));