ScrollableFieldBlocTarget constructor

const ScrollableFieldBlocTarget({
  1. Key? key,
  2. required SingleFieldBloc<dynamic, dynamic, FieldBlocState, dynamic> singleFieldBloc,
  3. bool canScroll = true,
  4. bool mustScroll = false,
  5. required Widget child,
})

Implementation

const ScrollableFieldBlocTarget({
  Key? key,
  required this.singleFieldBloc,
  this.canScroll = true,
  this.mustScroll = false,
  required this.child,
}) : super(key: key);