xcDevGetLocalPassword method

Future<String> xcDevGetLocalPassword({
  1. required String deviceId,
})

获取本地缓存设备登录密码 deviceId序列号

Implementation

Future<String> xcDevGetLocalPassword({required String deviceId}) async {
  final result = await _api.devGetLocalPassword(deviceId);
  if (kDebugMode) {
    XCloudResponse.fromOriginResponse(result);
  }
  return result.data;
}