FrView<VM extends FrViewModel<M>, M extends dynamic> constructor

const FrView<VM extends FrViewModel<M>, M extends dynamic>({
  1. Key? key,
  2. bool? onlyProvider = false,
  3. bool buildWhen(
    1. M pre,
    2. M cur
    )?,
  4. required FrViewBuilder<VM, M> builder,
  5. Widget? child,
})

Implementation

const FrView({
  super.key,
  this.onlyProvider = false,
  this.buildWhen,
  required this.builder,
  this.child,
});