xcDevGetLocalUserName method
获取本地缓存设备登录名
deviceId序列号
Implementation
Future<String> xcDevGetLocalUserName({required String deviceId}) async {
final result = await _api.devGetLocalUserName(deviceId);
if (kDebugMode) {
XCloudResponse.fromOriginResponse(result);
}
return result.data;
}