InputField constructor

InputField({
  1. Key? key,
  2. required InputControl control,
  3. String? label,
  4. String? hint,
  5. InputDecoration? decoration,
  6. Color? color,
  7. required InputBuilder builder,
})

Implementation

InputField({
  super.key,
  required super.control,
  this.label,
  this.hint,
  this.decoration,
  this.color,
  required this.builder,
});