RadioButtonGroupFieldBlocBuilder<Value> constructor

const RadioButtonGroupFieldBlocBuilder<Value>({
  1. Key? key,
  2. required SelectFieldBloc<Value, dynamic> selectFieldBloc,
  3. required FieldItemBuilder<Value> itemBuilder,
  4. bool enableOnlyWhenFormBlocCanSubmit = false,
  5. bool isEnabled = true,
  6. FieldBlocErrorBuilder? errorBuilder,
  7. EdgeInsetsGeometry? padding,
  8. InputDecoration decoration = const InputDecoration(),
  9. bool? canDeselect,
  10. FocusNode? nextFocusNode,
  11. bool animateWhenCanShow = true,
  12. TextStyle? textStyle,
  13. MaterialStateProperty<Color?>? textColor,
  14. MaterialStateProperty<MouseCursor?>? mouseCursor,
  15. MaterialStateProperty<Color?>? fillColor,
  16. MaterialStateProperty<Color?>? overlayColor,
  17. double? splashRadius,
  18. GroupStyle groupStyle = const FlexGroupStyle(),
  19. bool? canTapItemTile,
})

Implementation

const RadioButtonGroupFieldBlocBuilder({
  Key? key,
  required this.selectFieldBloc,
  required this.itemBuilder,
  this.enableOnlyWhenFormBlocCanSubmit = false,
  this.isEnabled = true,
  this.errorBuilder,
  this.padding,
  this.decoration = const InputDecoration(),
  this.canDeselect,
  this.nextFocusNode,
  this.animateWhenCanShow = true,
  this.textStyle,
  this.textColor,
  this.mouseCursor,
  this.fillColor,
  this.overlayColor,
  this.splashRadius,
  this.groupStyle = const FlexGroupStyle(),
  this.canTapItemTile,
}) : super(key: key);