FitBuilder<T extends FitState> constructor

const FitBuilder<T extends FitState>({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. T controller
    ),
  3. String? tag,
  4. dynamic init(
    1. T
    )?,
  5. dynamic dispose(
    1. T
    )?,
})

Implementation

const FitBuilder({
  super.key,
  required this.builder,
  this.tag,
  this.init,
  this.dispose,
});