padding property

EdgeInsetsGeometry padding
inherited

The amount to pad the children in each dimension.

If this is set to an EdgeInsetsDirectional object, then textDirection must not be null.

Implementation

EdgeInsetsGeometry get padding => _padding;
void padding=(EdgeInsetsGeometry value)
inherited

Implementation

set padding(EdgeInsetsGeometry value) {
  assert(value.isNonNegative);
  if (_padding == value) {
    return;
  }
  _padding = value;
  _markNeedsPaddingResolution();
}