decorateBody method

Widget decorateBody(
  1. Widget body
)

Implementation

Widget decorateBody(Widget body) {
  var pd = padding;
  return pd == null ? body : body.padded(pd);
}