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 name = this.name;
final nullable = this.nullable;
return {
'dataType': ?dataType,
'defaultValue': ?defaultValue,
'description': ?description,
'jsonSchema': ?jsonSchema,
'name': ?name,
'nullable': ?nullable,
};
}