PaymentResponse constructor
PaymentResponse({
- required String reference,
- required PaymentStatus status,
- required int amount,
- required Currency currency,
- required PaymentMethod paymentMethod,
- String? gatewayResponse,
- Map<
String, dynamic> ? rawResponse, - DateTime? createdAt,
Implementation
PaymentResponse({
required this.reference,
required this.status,
required this.amount,
required this.currency,
required this.paymentMethod,
this.gatewayResponse,
this.rawResponse,
this.createdAt,
});