ConvertableText constructor
const
ConvertableText({})
Implementation
const ConvertableText({
super.key,
required this.text,
this.color,
required this.style,
this.textAlign,
this.gradientColor,
this.shadows,
}) : assert(
gradientColor == null || color == null,
"You can't use both color and gradientColor at the same time.",
);