TextAreaStyleState constructor
TextAreaStyleState({})
Implementation
TextAreaStyleState({
Style? base,
Style? cursorLine,
Style? cursorLineNumber,
Style? endOfBuffer,
Style? lineNumber,
Style? placeholder,
Style? prompt,
Style? text,
}) : base = base ?? Style(),
cursorLine = cursorLine ?? Style(),
cursorLineNumber = cursorLineNumber ?? Style(),
endOfBuffer = endOfBuffer ?? Style(),
lineNumber = lineNumber ?? Style(),
placeholder = placeholder ?? Style(),
prompt = prompt ?? Style(),
text = text ?? Style();