toMap method

Map<String, dynamic> toMap()

Returns a Map representation of this FilterOption object, with keys corresponding to the property names.

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'title': needTitle,
    'size': sizeConstraint.toMap(),
    'duration': durationConstraint.toMap(),
  };
}