clickCloseButton method

void clickCloseButton()

Implementation

void clickCloseButton() {
  if (this.widget.onCancel != null)
    this.widget.onCancel!('{"action":"BootpayCancel","status":-100,"message":"사용자에 의한 취소"}');
  if (this.widget.onClose != null)
    this.widget.onClose!();
}