iosInfo method

Future<IosDevice> iosInfo()
override

Implementation

Future<IosDevice> iosInfo() async {
  IosDevice iosInfo = IosDevice.fromMap(
    (await _nativeChannel.invokeMethod(GET_IOS_DEVICE_INFO))
        .cast<String, dynamic>(),
  );
  Logger.log('TabooalaNative | iosInfo = ${iosInfo.toString()}');
  return iosInfo;
}