toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final filterable = this.filterable;
  final keywordSearchable = this.keywordSearchable;
  final longValues = this.longValues;
  final stringValues = this.stringValues;
  return {
    'filterable': ?filterable,
    'keywordSearchable': ?keywordSearchable,
    'longValues': ?longValues,
    'stringValues': ?stringValues,
  };
}