toUiState method

TextAreaUiState toUiState()

Implementation

TextAreaUiState toUiState() {
  return TextAreaUiState(
    label: label,
    helperMessage: helperMessage,
    placeholder: placeholder,
    maxCount: maxCount,
    inputType: inputType,
    textInputAction: textInputAction,
    text: text,
    focusState: focusState,
    errorState: errorState,
    state: state,
    backgroundColor: backgroundColor,
    textSelection: textSelection,
  );
}