verticalPadding property
double
get
verticalPadding
Defines vertical padding for rows based on the selected density level. Values: spacious=16.0, comfortable=12.0, compact=8.0
Implementation
double get verticalPadding => switch (this) {
VTableDensity.spacious => 16.0,
VTableDensity.comfortable => 12.0,
VTableDensity.compact => 8.0,
};