translationDevice method
转让设备
Implementation
Future<bool> translationDevice(String userId, String deviceId) async {
try {
await methodChannel.invokeMethod(
"translationDevice", {"userId": userId, "deviceId": deviceId});
return Future.value(true);
} catch (e) {
rethrow;
}
}