paddingAll method

Modifier paddingAll(
  1. double value
)

Wrap the widget into an Padding Widget with given padding

Implementation

Modifier paddingAll(double value) {
  return padding(left: value, top: value, right: value, bottom: value);
}