iosInfo static method

Future<IosDeviceInfo> iosInfo()

Implementation

static Future<IosDeviceInfo> iosInfo() async {
  return IosDeviceInfo.fromMap(
    (await _channel.invokeMethod('getIosDeviceInfo')).cast<String, dynamic>(),
  );
}