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