PaymentResponse constructor
PaymentResponse({
- required String id,
- required String actionId,
- required int amount,
- required bool approved,
- required String status,
- required String responseCode,
- PaymentMethod? type,
- required String token,
- required String reference,
- required String description,
- required Customer customer,
- required String currency,
- required String processedOn,
Implementation
PaymentResponse({
required this.id,
required this.actionId,
required this.amount,
required this.approved,
required this.status,
required this.responseCode,
this.type,
required this.token,
required this.reference,
required this.description,
required this.customer,
required this.currency,
required this.processedOn,
});