p property

void p=(double v)

Implementation

set p(double v) {
  useParent((c) => Padding(
        padding: EdgeInsets.all(v),
        child: c,
      ));
}