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