BioSection constructor
const
BioSection({
- Key? key,
- TextEditingController? controller,
- bool? readOnly,
- EdgeInsets? padding,
- EdgeInsets? margin,
- double? radius,
- Color? borderColor,
- Color? filledColor,
- bool isFilled = true,
- String? hint,
- TextStyle? hintStyle,
- TextStyle? textStyle,
- String? label,
- TextStyle? labelStyle,
- TextInputType? inputType = TextInputType.multiline,
- int noOfLines = 4,
- String? suffixText,
- TextStyle? suffixTextStyle,
- Widget? prefixIcon,
- TextAlign? textAlign = TextAlign.start,
- int? maxLength = 500,
- dynamic onChange()?,
- FocusNode? node,
- Widget? suffixIcon,
- Widget? suffix,
- List<
TextInputFormatter> ? inputFormat, - String? error,
- BoxConstraints? prefixIconConstraints,
- dynamic onTap()?,
- bool isOptional = false,
- bool obscureText = false,
- String? validator()?,
- AutovalidateMode? autovalidateMode,
- bool showHint = true,
Implementation
const BioSection({
super.key,
this.controller,
this.readOnly,
this.padding,
this.margin,
this.radius,
this.borderColor,
this.filledColor,
this.isFilled = true,
this.hint,
this.hintStyle,
this.textStyle,
this.label,
this.labelStyle,
this.inputType = TextInputType.multiline,
this.noOfLines = 4,
this.suffixText,
this.suffixTextStyle,
this.prefixIcon,
this.textAlign = TextAlign.start,
this.maxLength = 500,
this.onChange,
this.node,
this.suffixIcon,
this.suffix,
this.inputFormat,
this.error,
this.prefixIconConstraints,
this.onTap,
this.isOptional = false,
this.obscureText = false,
this.validator,
this.autovalidateMode,
this.showHint = true,
});