execute method

Future<Command> execute()

Implementation

Future<Command> execute() async {
  await subCommand.executeIfDirty();
  if (_subCommand != null) {
    outputImage = _subCommand!.outputImage;
    outputBytes = _subCommand!.outputBytes;
    outputObject = _subCommand!.outputObject;
  }
  return this;
}