mLTRB method

AzContainer mLTRB(
  1. dynamic left,
  2. dynamic top,
  3. dynamic right,
  4. dynamic bottom,
)

Implementation

AzContainer mLTRB(left,top,right,bottom){
  _marginLeft = left;
  _marginTop = top;
  _marginRight = right;
  _marginBottom = bottom;
  return this;
}