toJson method

Map<String, dynamic> toJson()

Implementation

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