解绑绑定网关
Future<bool> unbindRelay(String deviceId) async { try { await methodChannel.invokeMethod("unbindRelay", {"deviceId": deviceId}); return Future.value(true); } catch (e) { rethrow; } }