BioField constructor

const BioField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? label,
  4. double? fontsize,
  5. FormFieldValidator<String>? validator,
  6. String? hint,
  7. Color? bordercolor,
  8. int minLines = 3,
  9. int maxLines = 10,
})

Implementation

const BioField({
  super.key,
  this.controller,
  this.label,
  this.fontsize,
  this.validator,
  this.hint,
  this.bordercolor,
  this.minLines = 3,
  this.maxLines = 10,
});