sendCommand method
Implementation
@override
Future<void> sendCommand(Command command) {
if (_baseStationConnectionState != BaseStationConnectionEnum.connected) {
throw Exception('Not connected');
}
return characteristics.sendCommand(command);
}