CommandResponse.succeeded constructor
Creates a CommandResponse representing a success.
- Returns: A CommandResponse with an empty response message and the 
succeededflag set totrue. 
Implementation
factory CommandResponse.succeeded() {
  return CommandResponse('', true);
}