AuthenticationCheckoutViewModel constructor

AuthenticationCheckoutViewModel({
  1. required PaymentMethodType paymentMethodType,
  2. required String? url,
  3. required String? successUrl,
  4. required String? failUrl,
  5. required Function? onSuccessCallback,
  6. required Function? onFailCallback,
})

Implementation

AuthenticationCheckoutViewModel({
  required this.paymentMethodType,
  required this.url,
  required this.successUrl,
  required this.failUrl,
  required this.onSuccessCallback,
  required this.onFailCallback,
});