paddingAll method

BetterUI paddingAll(
  1. double value
)

Implementation

BetterUI paddingAll(double value) {
  return _with((child) => Padding(padding: EdgeInsets.all(value), child: child));
}