border method

AzContainer border(
  1. Color color,
  2. double width,
  3. BorderStyle style,
  4. double strokeAlign,
)

Implementation

AzContainer border(Color color, double width, BorderStyle style, double strokeAlign){
  _border = Border.all(
      color: color,
      width: width,
      style: style,
      strokeAlign: strokeAlign
  );
  return this;
}