PcoServicesServiceTypeQuery constructor
PcoServicesServiceTypeQuery({
- bool includeTimePreferenceOptions = false,
- String? whereId,
- String? whereName,
- PcoServicesServiceTypeFilter? filterBy,
- PcoServicesServiceTypeOrder? orderBy,
- bool reverse = false,
- int perPage = 25,
- int pageOffset = 0,
- Map<
String, String> extraParams = const {}, - List<
PlanningCenterApiWhere> ? where, - Iterable<
String> filter = const <String>[], - String? order,
- Iterable<
String> include = const <String>[],
Implementation
PcoServicesServiceTypeQuery({
/// include associated time_preference_options
/// when true, adds `?include=time_preference_options` to url
bool includeTimePreferenceOptions = false,
/// Query by `id`
/// query on a specific id, url example: ?where[id]=primary_key
/// include a prefix of `<`, `<=`, `>`, `>=` to query by comparisons
String? whereId,
/// Query by `name`
/// query on a specific name, url example: ?where[name]=string
/// include a prefix of `<`, `<=`, `>`, `>=` to query by comparisons
String? whereName,
PcoServicesServiceTypeFilter? filterBy,
PcoServicesServiceTypeOrder? orderBy,
/// reverse the ordering
bool reverse = false,
// direct access to super class params
super.perPage,
super.pageOffset,
super.extraParams,
super.where,
super.filter,
super.order,
super.include,
}) : super() {
if (filterBy != null) filter.add(filterString(filterBy));
if (includeTimePreferenceOptions) include.add('time_preference_options');
if (whereId != null) where.add(PlanningCenterApiWhere.parse('id', whereId));
if (whereName != null)
where.add(PlanningCenterApiWhere.parse('name', whereName));
if (orderBy != null) order = orderString(orderBy, reverse: reverse);
}