setPadding method

void setPadding(
  1. int left,
  2. int top,
  3. int right,
  4. int bottom,
)

Implementation

void setPadding(int left, int top, int right, int bottom) {
  _padding = <String, int>{
    "left": left,
    "top": top,
    "right": right,
    "bottom": bottom
  };
}