toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final defaultValue = this.defaultValue;
final filterable = this.filterable;
final id = this.id;
final name = this.name;
final renderable = this.renderable;
final required = this.required;
final type = this.type;
return {
'defaultValue': ?defaultValue,
'filterable': ?filterable,
'id': ?id,
'name': ?name,
'renderable': ?renderable,
'required': ?required,
'type': ?type,
};
}