TextInputStyleState constructor
Implementation
TextInputStyleState({
Style? text,
Style? placeholder,
Style? suggestion,
Style? prompt,
}) : text = text ?? Style(),
placeholder = placeholder ?? Style(),
suggestion = suggestion ?? Style(),
prompt = prompt ?? Style();