RTextFieldSemantics constructor

const RTextFieldSemantics({
  1. String? label,
  2. String? hint,
  3. bool isEnabled = true,
  4. bool isReadOnly = false,
  5. bool isObscured = false,
  6. String? errorText,
})

Implementation

const RTextFieldSemantics({
  this.label,
  this.hint,
  this.isEnabled = true,
  this.isReadOnly = false,
  this.isObscured = false,
  this.errorText,
});