ios property

Implementation

Future<IosDeviceInfo?> get ios async {
  if (isIOS && !isWeb) {
    return _iosInfo ??= await _deviceInfoPlugin.iosInfo;
  }
  return null;
}