borderFromLTRB method

AzContainer borderFromLTRB(
  1. bool left,
  2. bool top,
  3. bool right,
  4. bool bottom,
)

Implementation

AzContainer borderFromLTRB(bool left, bool top, bool right, bool bottom){
  if(_borderColor == Colors.transparent){
    _borderColor = Colors.black;
  }
  _borderLeft = left;
  _borderTop = top;
  _borderRight = right;
  _borderBottom  = bottom;

  _border = borderSet();
  return this;
}