toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attribute = this.attribute;
final description = this.description;
final pathPatternSupported = this.pathPatternSupported;
final required = this.required;
return {
'attribute': ?attribute,
'description': ?description,
'pathPatternSupported': ?pathPatternSupported,
'required': ?required,
};
}