toJson method

Map<String, dynamic> toJson()

Implementation

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