EdgeInsets padding

The amount of space by which to inset the children inside the list.

Source

EdgeInsets get padding => _padding;
void padding=(EdgeInsets newValue)

Source

set padding (EdgeInsets newValue) {
  if (_padding == newValue)
    return;
  _padding = newValue;
  markNeedsLayout();
}