widgetStatusReset method

void widgetStatusReset()

Implementation

void widgetStatusReset() {
  _controller.loadRequest(Uri.parse(WIDGET_URL));
  if(paymentResult == BootpayPaymentResult.NONE) { //hardware 백 버튼에 의한 뒤로가기일 확률이 높다
    //cancel 호출
    if(this.onCancel != null) {
      this.onCancel!('{"action":"BootpayCancel","status":-100,"message":"사용자에 의한 취소"}');
    }
  }

  closeController.isDebounceShow = false;
  paymentResult = BootpayPaymentResult.NONE;
}