collection constant

_$GithubOrganizationModelCollectionQuery const collection

Query for collection.

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

Implementation

static const collection = _$GithubOrganizationModelCollectionQuery();