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