StoreBuilderBase<S> constructor

const StoreBuilderBase<S>({
  1. Key? key,
  2. required Store<S> store,
  3. StoreBuilderCondition<S>? condition,
})

Implementation

const StoreBuilderBase({
  Key? key,
  required this.store,
  this.condition
}): super(key: key);