collection constant

_$$_StripeUserModelCollectionQuery const collection

Query for collection.

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

Implementation

static const collection = _$$_StripeUserModelCollectionQuery();