startCheckout method

Future<bool> startCheckout({
  1. required Map<String, dynamic> configurations,
  2. dynamic onClose()?,
  3. dynamic onReady()?,
  4. dynamic onSuccess(
    1. String
    )?,
  5. dynamic onError(
    1. String
    )?,
  6. dynamic onCancel()?,
})

Start the checkout process with configurations and callbacks

Implementation

Future<bool> startCheckout({
  required Map<String, dynamic> configurations,
  Function()? onClose,
  Function()? onReady,
  Function(String)? onSuccess,
  Function(String)? onError,
  Function()? onCancel,
}) {
  throw UnimplementedError('startCheckout() has not been implemented.');
}