setDeviceInfo method

Future<void> setDeviceInfo()

Implementation

Future<void> setDeviceInfo() async {
  //
  if (BytedeskUtils.isWeb) {
    //
  } else if (BytedeskUtils.isAndroid) {
    updateAndroidDeviceInfo();
  } else if (BytedeskUtils.isIOS) {
    updateIOSDeviceInfo();
  } else {
    // TODO: web/windows/mac
  }
}