disconnectFromDevice method
Implementation
@override
Future<bool> disconnectFromDevice(String deviceId) async {
final success = await methodChannel.invokeMethod<bool>('disconnectFromDevice', {'deviceId': deviceId});
return success ?? false;
}
@override
Future<bool> disconnectFromDevice(String deviceId) async {
final success = await methodChannel.invokeMethod<bool>('disconnectFromDevice', {'deviceId': deviceId});
return success ?? false;
}