PaymentResult constructor
PaymentResult({
- required Status status,
- Result? message,
- required HyperswitchException error,
Constructs a PaymentResult object with the given status and message.
Implementation
PaymentResult({
required this.status,
this.message,
required this.error,
});