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