TextInputView constructor

const TextInputView({
  1. Key? key,
  2. bool? autofocus = false,
  3. dynamic onFocus()?,
  4. dynamic onBlur()?,
  5. int? maxlength = -1,
  6. TextInputType? keyboardType,
  7. String? placeholder = '',
})

Implementation

const TextInputView(
    {Key? key,
    this.autofocus = false,
    this.onFocus,
    this.onBlur,
    this.maxlength = -1,
    this.keyboardType,
    this.placeholder = ''})
    : super(key: key);