toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateTimeTypeOptions = this.dateTimeTypeOptions;
  final displayName = this.displayName;
  final enumTypeOptions = this.enumTypeOptions;
  final floatTypeOptions = this.floatTypeOptions;
  final integerTypeOptions = this.integerTypeOptions;
  final isFilterable = this.isFilterable;
  final isMetadata = this.isMetadata;
  final isRepeatable = this.isRepeatable;
  final isRequired = this.isRequired;
  final isSearchable = this.isSearchable;
  final mapTypeOptions = this.mapTypeOptions;
  final name = this.name;
  final propertyTypeOptions = this.propertyTypeOptions;
  final retrievalImportance = this.retrievalImportance;
  final schemaSources = this.schemaSources;
  final textTypeOptions = this.textTypeOptions;
  final timestampTypeOptions = this.timestampTypeOptions;
  return {
    'dateTimeTypeOptions': ?dateTimeTypeOptions,
    'displayName': ?displayName,
    'enumTypeOptions': ?enumTypeOptions,
    'floatTypeOptions': ?floatTypeOptions,
    'integerTypeOptions': ?integerTypeOptions,
    'isFilterable': ?isFilterable,
    'isMetadata': ?isMetadata,
    'isRepeatable': ?isRepeatable,
    'isRequired': ?isRequired,
    'isSearchable': ?isSearchable,
    'mapTypeOptions': ?mapTypeOptions,
    'name': ?name,
    'propertyTypeOptions': ?propertyTypeOptions,
    'retrievalImportance': ?retrievalImportance,
    'schemaSources': ?schemaSources,
    'textTypeOptions': ?textTypeOptions,
    'timestampTypeOptions': ?timestampTypeOptions,
  };
}