InputText constructor

const InputText({
  1. Key? key,
  2. required String hintText,
  3. String? initialValue,
  4. void onChanged(
    1. String
    )?,
  5. bool enabled = true,
})

Implementation

const InputText({
  super.key,
  required this.hintText,
  this.initialValue,
  this.onChanged,
  this.enabled = true,
});