InputText constructor

const InputText({
  1. Key? key,
  2. InputType type = InputType.text,
  3. String label = "",
  4. String initialValue = "",
  5. String? validator(
    1. String?
    )?,
  6. void onChanged(
    1. String
    )?,
})

Implementation

const InputText({
  super.key,
  this.type = InputType.text,
  this.label = "",
  this.initialValue = "",
  this.validator,
  this.onChanged,
});