toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final defaultValue = this.defaultValue;
  final description = this.description;
  final entries = this.entries;
  final key = this.key;
  final nestedProperties = this.nestedProperties;
  final title = this.title;
  final type = this.type;
  return {
    'defaultValue': ?defaultValue,
    'description': ?description,
    'entries': ?entries,
    'key': ?key,
    'nestedProperties': ?nestedProperties,
    'title': ?title,
    'type': ?type,
  };
}