toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataStoreSpec = this.dataStoreSpec;
  final description = this.description;
  final displayName = this.displayName;
  final functionSpec = this.functionSpec;
  final name = this.name;
  final openApiSpec = this.openApiSpec;
  final toolType = this.toolType;
  return {
    'dataStoreSpec': ?dataStoreSpec,
    'description': ?description,
    'displayName': ?displayName,
    'functionSpec': ?functionSpec,
    'name': ?name,
    'openApiSpec': ?openApiSpec,
    'toolType': ?toolType,
  };
}