PayPalPaymentResult constructor

const PayPalPaymentResult({
  1. required bool success,
  2. String? orderId,
  3. String? payerId,
  4. String? status,
  5. String? errorCode,
  6. String? message,
})

Implementation

const PayPalPaymentResult({
  required this.success,
  this.orderId,
  this.payerId,
  this.status,
  this.errorCode,
  this.message,
});