FrViewU<M extends FrUnionModel> constructor

const FrViewU<M extends FrUnionModel>({
  1. Key? key,
  2. String tag = '',
  3. bool? onlyProvider = false,
  4. bool buildWhen(
    1. M pre,
    2. M cur
    )?,
  5. required FrViewBuilder<FrUnionViewModel, M> builder,
  6. Widget? child,
})

Implementation

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