getTextStrokeColor static method
Color
getTextStrokeColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getTextStrokeColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.textStrokeColor ??
style?.textStrokeColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).textStrokeColor ??
Colors.transparent;
}