The amount of space by which to inset the children inside the list.
Source
EdgeInsets get padding => _padding;
Source
set padding (EdgeInsets newValue) {
if (_padding == newValue)
return;
_padding = newValue;
markNeedsLayout();
}
The amount of space by which to inset the children inside the list.
EdgeInsets get padding => _padding;
set padding (EdgeInsets newValue) {
if (_padding == newValue)
return;
_padding = newValue;
markNeedsLayout();
}