toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final args = this.args;
  final displayName = this.displayName;
  final id = this.id;
  final tool = this.tool;
  final toolsetTool = this.toolsetTool;
  return {
    'args': ?args,
    'displayName': ?displayName,
    'id': ?id,
    'tool': ?tool,
    'toolsetTool': ?toolsetTool,
  };
}