PlexFormField.input constructor

PlexFormField.input({
  1. required String title,
  2. required Type type,
  3. required dynamic onChange(
    1. dynamic value
    ),
  4. bool editable = true,
  5. TextInputType? inputType,
  6. TextInputAction? inputAction,
  7. bool isPassword = false,
  8. dynamic initialValue,
})

Implementation

PlexFormField.input({
  required this.title,
  required this.type,
  required this.onChange,
  this.editable = true,
  this.inputType,
  this.inputAction,
  this.isPassword = false,
  this.initialValue,
}) {
  fieldType = TYPE_INPUT;
}