TextInput constructor

const TextInput({
  1. Key? key,
  2. String? title,
  3. required dynamic callback(
    1. String
    ),
  4. String field = "",
  5. FocusNode? focusNode,
  6. VoidCallback? onEditingComplete,
  7. TextInputAction? textInputAction,
  8. TextInputType? textInputType,
  9. bool capsAll = true,
})

Implementation

const TextInput({
  super.key,
  this.title,
  required this.callback,
  this.field = "",
  this.focusNode,
  this.onEditingComplete,
  this.textInputAction,
  this.textInputType,
  this.capsAll = true,
});