toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final args = this.args;
  final command = this.command;
  final timeoutSeconds = this.timeoutSeconds;
  return {
    'args': ?args,
    'command': ?command,
    'timeoutSeconds': ?timeoutSeconds,
  };
}