CoffeeQueryFilter constructor

CoffeeQueryFilter({
  1. required String expression,
  2. required String type,
})

Creates a CoffeeQueryFilter.

expression: A string that represents the query expression. type: A string that represents the type of query ('sort', 'filter', or 'parameter').

Implementation

CoffeeQueryFilter({required this.expression, required this.type});