BootpayPlatform constructor

BootpayPlatform()

Implementation

BootpayPlatform() {
  _BootpayClose = allowInterop(onClose);
  _BootpayCancel = allowInterop(onCancel);
  _BootpayDone = allowInterop(onDone);
  _BootpayIssued = allowInterop(onIssued);
  _BootpayConfirm = allowInterop(onConfirm);
  _BootpayAsyncConfirm = allowInterop(onConfirmAsync); //js에서 BootpayAsyncConfirm 호출시 onConfirmAsync 수행
  _BootpayError = allowInterop(onError);
}