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