TextAreaStyleState constructor

TextAreaStyleState({
  1. Style? base,
  2. Style? cursorLine,
  3. Style? cursorLineNumber,
  4. Style? endOfBuffer,
  5. Style? lineNumber,
  6. Style? placeholder,
  7. Style? prompt,
  8. Style? text,
})

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();