borderFromLTRBForeground method
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;
}