width method

AzButton width(
  1. double width
)

Implementation

AzButton width(double width){
  _width = width;
  _fixedSize = MaterialStateProperty.all(Size(width, _height));
  return this;
}