maxHeight method

AzButton maxHeight(
  1. double height
)

Implementation

AzButton maxHeight(double height){
  _maxHeight = height;
  _maximumSize = MaterialStateProperty.all(Size(_maxWidth, height));
  return this;
}