iosInfo property

Future<IosDeviceInfo> get iosInfo

Information derived from UIDevice.

See: https://developer.apple.com/documentation/uikit/uidevice

Implementation

Future<IosDeviceInfo> get iosInfo async =>
    _cachedIosDeviceInfo ??= IosDeviceInfo.fromMap(
      (await _platform.deviceInfo()).data,
    );