SaveReactiveProvider<T> constructor

SaveReactiveProvider<T>(
  1. FutureOr<T> build(
    1. SaveObserver $
    ), {
  2. bool autoDispose = true,
  3. void onDispose(
    1. T last
    )?,
})

Implementation

SaveReactiveProvider(
  this.build, {
  this.autoDispose = true,
  this.onDispose,
}) : identification = null;