show method

void show(
  1. ProgressHudType type,
  2. String text
)

show hud with type and text

Implementation

void show(ProgressHudType type, String text) {
  if (this.mounted) {
    _text = text;
    _isVisible = true;
    _progressType = type;
    setState(() {
      _opacity = 1;
    });
    this._hasBuildAfterShow = false;
  }
}