RTextFieldState constructor

const RTextFieldState({
  1. bool isFocused = false,
  2. bool isHovered = false,
  3. bool isDisabled = false,
  4. bool isReadOnly = false,
  5. bool hasText = false,
  6. bool isError = false,
  7. bool isObscured = false,
})

Implementation

const RTextFieldState({
  this.isFocused = false,
  this.isHovered = false,
  this.isDisabled = false,
  this.isReadOnly = false,
  this.hasText = false,
  this.isError = false,
  this.isObscured = false,
});