toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxOccurs = this.maxOccurs;
final minOccurs = this.minOccurs;
final type = this.type;
return {'maxOccurs': ?maxOccurs, 'minOccurs': ?minOccurs, 'type': ?type};
}