arguments method
Implementation
List<LabelValue<dynamic>> arguments() {
String cond = filter?.buildCondition() ?? "";
return ["offset" >> offset, "limit" >> limit, if (sort.isNotEmpty) "sort" >> sort.join(","), if (cond.contains("|")) "q" >> cond];
}