getAllFromServiceTypeAndPlanAndItem static method

Future<PcoCollection<PcoServicesItemNote>> getAllFromServiceTypeAndPlanAndItem(
  1. String serviceTypeId,
  2. String planId,
  3. String itemId, {
  4. String? id,
  5. PcoServicesItemNoteQuery? query,
  6. bool includeItemNoteCategory = false,
})

Will get a PcoCollection containing ALL PcoServicesItemNote objects (expecting many) using a path like this: /services/v2/service_types/$serviceTypeId/plans/$planId/items/$itemId/item_notes

Additional options may be specified by using the query argument, but some query options are also available as boolean flags in this function call too.

This function forces the query.getAll to be true.

Implementation

static Future<PcoCollection<PcoServicesItemNote>>
    getAllFromServiceTypeAndPlanAndItem(
  String serviceTypeId,
  String planId,
  String itemId, {
  String? id,
  PcoServicesItemNoteQuery? query,
  bool includeItemNoteCategory = false,
}) async {
  query ??= PcoServicesItemNoteQuery();
  query.getAll = true;

  if (includeItemNoteCategory) query.include.add('item_note_category');
  var url =
      '/services/v2/service_types/$serviceTypeId/plans/$planId/items/$itemId/item_notes';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesItemNote>(url,
      query: query, apiVersion: kApiVersion);
}