childMap method

  1. @override
Map<String, dynamic> childMap()
override

The child map of the filter.

The subclass should override this method to make params.

Implementation

@override
Map<String, dynamic> childMap() {
  return <String, dynamic>{
    'where': makeWhere(),
    'orderBy': makeOrderBy().map((e) => e.toMap()).toList(),
    'needTitle': needTitle,
  };
}