paddingTLBR method

Padding paddingTLBR(
  1. double top,
  2. double left,
  3. double bottom,
  4. double right,
)

Implementation

Padding paddingTLBR(double top, double left, double bottom, double right)
{
  return Padding(padding: EdgeInsets.only(top: top, left: left, bottom: bottom, right: right), child: this);
}