height method

AzButton height(
  1. double height
)

Implementation

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