iosInfo method

Future<IosDeviceInfo> iosInfo()
override

Gets the iOS device information.

Implementation

Future<IosDeviceInfo> iosInfo() async {
  return IosDeviceInfo.fromMap(
      (await channel.invokeMapMethod<String, dynamic>('getIosDeviceInfo')) ??
          <String, dynamic>{});
}