CheckoutResult constructor

CheckoutResult({
  1. String? result,
  2. int? id,
  3. String? status,
  4. String? statusDetail,
  5. String? paymentMethodId,
  6. String? paymentTypeId,
  7. String? operationType,
  8. String? transactionAmount,
})

CheckoutResult gets the result of the operation using the sdk

Implementation

factory CheckoutResult({
  /// result can be 'done' or 'canceled'.
  String? result,
  int? id,

  /// status can be 'rejected','in_process' or 'approved'.
  String? status,
  String? statusDetail,
  String? paymentMethodId,
  String? paymentTypeId,
  String? operationType,
  String? transactionAmount,
}) = _CheckoutResult;