toUiState method

TextFieldUiState toUiState()

Implementation

TextFieldUiState toUiState() {
  return TextFieldUiState(
    label: label,
    helperMessage: helperMessage,
    placeholder: placeholder,
    maxCount: maxCount,
    maxLine: maxLine,
    inputType: inputType,
    text: text,
    focusState: focusState,
    errorState: errorState,
    state: state,
    needToBlockOverflowInput: needToBlockOverflowInput,
  );
}