collection constant

_$PointEcosystemUserModelCollectionQuery const collection

Query for collection.

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

Implementation

static const collection = _$PointEcosystemUserModelCollectionQuery();