paddingTop method

Padding paddingTop(
  1. double value
)

Wraps this widget with padding only on the top.

Implementation

Padding paddingTop(double value) {
  return Padding(padding: EdgeInsets.only(top: value), child: this);
}