toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final listLimits = this.listLimits;
  final maxChoices = this.maxChoices;
  final maxDeletedChoices = this.maxDeletedChoices;
  final maxDisplayNameLength = this.maxDisplayNameLength;
  final maxIdLength = this.maxIdLength;
  return {
    'listLimits': ?listLimits,
    'maxChoices': ?maxChoices,
    'maxDeletedChoices': ?maxDeletedChoices,
    'maxDisplayNameLength': ?maxDisplayNameLength,
    'maxIdLength': ?maxIdLength,
  };
}