release method

Future<CommandAck> release(
  1. DeviceCommand command
)

Implementation

Future<CommandAck> release(
  DeviceCommand command,
) async {
  _driver.disconnectDriver();

  return CommandAck(
    commandId: command.id,
    message: '[${command.type}]: success',
    success: true,
  );
}