minHeight method

AzButton minHeight(
  1. double height
)

Implementation

AzButton minHeight(double height){
  _minHeight = height;
  _minWidth = _minWidth < 10 ? 10 : _minWidth;
  _minimumSize = MaterialStateProperty.all(Size(_minWidth, height));
  return this;
}