BootpayPlatform constructor

BootpayPlatform()

Implementation

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