getDeviceInfoObject method

Future<DeviceDetailsModel?> getDeviceInfoObject()

Implementation

Future<DeviceDetailsModel?> getDeviceInfoObject() async {
  if (Platform.isAndroid) {
    return getAndroidBuildData(await deviceInfoPlugin.androidInfo);
  } else if (Platform.isIOS) {
    return getIosDeviceInfo(await deviceInfoPlugin.iosInfo);
  }
  return getUnknownDeviceInfo(await deviceInfoPlugin.webBrowserInfo);
}