toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataType = this.dataType;
final defaultValue = this.defaultValue;
final description = this.description;
final jsonSchema = this.jsonSchema;
final nullable = this.nullable;
final parameter = this.parameter;
return {
'dataType': ?dataType,
'defaultValue': ?defaultValue,
'description': ?description,
'jsonSchema': ?jsonSchema,
'nullable': ?nullable,
'parameter': ?parameter,
};
}