SaveReactiveProvider<T>.identifiedBy constructor

const SaveReactiveProvider<T>.identifiedBy(
  1. FutureOr<T> build(
    1. SaveObserver $
    ), {
  2. required List<Object?>? identification,
  3. bool autoDispose = true,
  4. void onDispose(
    1. T last
    )?,
})

DO NOT USE THIS BY YOURSELF To customize the generation of SaveRepositoryKey.

Implementation

const SaveReactiveProvider.identifiedBy(
  this.build, {
  required this.identification,
  this.autoDispose = true,
  this.onDispose,
});