KeepRiverpodBuilder<T extends KeepBaseViewModel<S>, S> constructor

const KeepRiverpodBuilder<T extends KeepBaseViewModel<S>, S>({
  1. Key? key,
  2. required NotifierProvider<T, S> provider,
  3. required Widget builder(
    1. BuildContext context,
    2. WidgetRef ref,
    3. T vm,
    4. S state,
    5. T reader,
    ),
  4. bool showLog = true,
})

Implementation

const KeepRiverpodBuilder({
  super.key,
  required this.provider,
  required this.builder,
  this.showLog = true,
});