iosInfo method

  1. @override
Future<IosDeviceInfo> iosInfo()
override

Implementation

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