collection constant

_$LocalNotificationScheduleModelCollectionQuery const collection

Query for collection.

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

Implementation

static const collection = _$LocalNotificationScheduleModelCollectionQuery();