TextStyles constructor
Implementation
TextStyles(
{final TextStyle? active,
final TextStyle? error,
final TextStyle? hint,
final TextStyle? text}) {
_active = active ?? _style(_Type.active);
_error = error ?? _style(_Type.error);
_hint = hint ?? _style(_Type.hint);
_text = text ?? _style(_Type.text);
}