copyWithWrapped method

HubCommandV3Body copyWithWrapped({
  1. Wrapped<HubCommandModel?>? command,
})

Implementation

HubCommandV3Body copyWithWrapped({Wrapped<HubCommandModel?>? command}) {
  return HubCommandV3Body(
      command: (command != null ? command.value : this.command));
}