toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final booleanPropertyOptions = this.booleanPropertyOptions;
  final datePropertyOptions = this.datePropertyOptions;
  final displayOptions = this.displayOptions;
  final doublePropertyOptions = this.doublePropertyOptions;
  final enumPropertyOptions = this.enumPropertyOptions;
  final htmlPropertyOptions = this.htmlPropertyOptions;
  final integerPropertyOptions = this.integerPropertyOptions;
  final isFacetable = this.isFacetable;
  final isRepeatable = this.isRepeatable;
  final isReturnable = this.isReturnable;
  final isSortable = this.isSortable;
  final isSuggestable = this.isSuggestable;
  final isWildcardSearchable = this.isWildcardSearchable;
  final name = this.name;
  final objectPropertyOptions = this.objectPropertyOptions;
  final textPropertyOptions = this.textPropertyOptions;
  final timestampPropertyOptions = this.timestampPropertyOptions;
  return {
    'booleanPropertyOptions': ?booleanPropertyOptions,
    'datePropertyOptions': ?datePropertyOptions,
    'displayOptions': ?displayOptions,
    'doublePropertyOptions': ?doublePropertyOptions,
    'enumPropertyOptions': ?enumPropertyOptions,
    'htmlPropertyOptions': ?htmlPropertyOptions,
    'integerPropertyOptions': ?integerPropertyOptions,
    'isFacetable': ?isFacetable,
    'isRepeatable': ?isRepeatable,
    'isReturnable': ?isReturnable,
    'isSortable': ?isSortable,
    'isSuggestable': ?isSuggestable,
    'isWildcardSearchable': ?isWildcardSearchable,
    'name': ?name,
    'objectPropertyOptions': ?objectPropertyOptions,
    'textPropertyOptions': ?textPropertyOptions,
    'timestampPropertyOptions': ?timestampPropertyOptions,
  };
}