PaymentResult constructor

const PaymentResult({
  1. required bool success,
  2. String? error,
  3. String? errorMessage,
})

Implementation

const PaymentResult({
  required this.success,
  this.error,
  this.errorMessage,
});