collection constant

_$$_StripePurchaseModelCollectionQuery const collection

Query for collection.

appRef.model(StripePurchasePurchaseModel.collection());       // Get the collection.
ref.app.model(StripePurchasePurchaseModel.collection())..load();  // Load the collection.
ref.app.model(
  StripePurchasePurchaseModel.collection().equal(
    StripePurchasePurchaseModelCollectionKey.xxx,
    "data",
  ),
)..load(); // Load the collection with filter.

Implementation

static const collection = _$$_StripePurchaseModelCollectionQuery();