close method

dynamic close()

Implementation

close() {
  if (_isOpened) {
    _isOpened = false;
    Navigator.pop(_widgetState.context);
  }
}