toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deprecated = this.deprecated;
  final description = this.description;
  final displayName = this.displayName;
  final displayOrder = this.displayOrder;
  final stringType = this.stringType;
  final stringValues = this.stringValues;
  return {
    'deprecated': ?deprecated,
    'description': ?description,
    'displayName': ?displayName,
    'displayOrder': ?displayOrder,
    'stringType': ?stringType,
    'stringValues': ?stringValues,
  };
}