borderFromLTRBForeground method

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

Implementation

AzContainer borderFromLTRBForeground(bool left, bool top, bool right, bool bottom){
  if(_borderColorForeground == Colors.transparent){
    _borderColorForeground = Colors.black;
  }
  _borderLeftForeground = left;
  _borderTopForeground = top;
  _borderRightForeground = right;
  _borderBottomForeground  = bottom;

  _borderForeground = borderSet();
  return this;
}