Creates a render object that insets its child.
The padding argument must not be null and must have non-negative insets.
Source
RenderPadding({
EdgeInsets padding,
RenderBox child
}) : _padding = padding, super(child) {
assert(padding != null);
assert(padding.isNonNegative);
}