getTableHeadingRowHeight static method
double?
getTableHeadingRowHeight(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double? getTableHeadingRowHeight(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.tableHeadingRowHeight ??
style?.tableHeadingRowHeight ??
getStyleByType(UpConfig.of(context).theme, colorType)
.tableHeadingRowHeight;
}