TextInputOptions constructor

TextInputOptions({
  1. required String label,
  2. required bool isRequired,
  3. int? maxLength,
  4. bool autoFocus = false,
})

Implementation

TextInputOptions(
    {required this.label,
    required this.isRequired,
    this.maxLength,
    this.autoFocus = false});