paddingTLBR method
Wraps this widget with padding specified individually for each side.
Parameters:
top: Top padding valueleft: Left padding valuebottom: Bottom padding valueright: Right padding value
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);
}