onCloseConnect method

void onCloseConnect([
  1. String text = '请求超时,稍后重试',
  2. bool isNeed = true
])

请求超时

Implementation

void onCloseConnect([String text = '请求超时,稍后重试', bool isNeed = true]) {
  super.onClose();
  Loading.dismiss();
  if (isNeed) {
    Toast.showText(text);
  }
}