CanShowFieldBlocBuilder constructor

const CanShowFieldBlocBuilder({
  1. Key? key,
  2. required FieldBloc<FieldBlocStateBase> fieldBloc,
  3. required Widget builder(
    1. BuildContext context,
    2. bool canShow
    ),
  4. bool animate = true,
})

Implementation

const CanShowFieldBlocBuilder({
  Key? key,
  required this.fieldBloc,
  required this.builder,
  this.animate = true,
}) : super(key: key);