LocalStoreCollectionQuery constructor

const LocalStoreCollectionQuery({
  1. required String path,
  2. void callback(
    1. LocalStoreDocumentUpdate update
    )?,
  3. Object? origin,
  4. bool filter(
    1. DynamicMap update
    )?,
})

Implementation

const LocalStoreCollectionQuery({
  required this.path,
  this.callback,
  this.origin,
  this.filter,
});