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