LinkTextFieldWidget constructor

const LinkTextFieldWidget({
  1. Key? key,
  2. void saveValue(
    1. String?
    )?,
  3. Text? title,
  4. required String getValue(),
  5. FieldValidation? validation,
  6. FocusNode? focusNode,
  7. void onSubmit(
    1. String
    )?,
  8. TextInputType? keyboardType,
  9. bool multiLine = false,
  10. int? maxLines = 8,
  11. bool? isEditable,
  12. TextInputAction? textInputAction,
})

Implementation

const LinkTextFieldWidget({
  Key? key,
  this.saveValue,
  this.title,
  required this.getValue,
  this.validation,
  this.focusNode,
  this.onSubmit,
  this.keyboardType,
  this.multiLine = false,
  this.maxLines = 8,
  this.isEditable,
  this.textInputAction,
}) : super(key: key);