iosInfo method

Future<TBLIosDevice> iosInfo()
override

Implementation

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