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