toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final filterKey = this.filterKey;
  final filterType = this.filterType;
  final intValue = this.intValue;
  final stringListValues = this.stringListValues;
  final stringValue = this.stringValue;
  return {
    'filterKey': ?filterKey,
    'filterType': ?filterType,
    'intValue': ?intValue,
    'stringListValues': ?stringListValues,
    'stringValue': ?stringValue,
  };
}