PaymentResponse constructor
PaymentResponse({
- required bool success,
- required String code,
- required String message,
- required PaymentData data,
Implementation
PaymentResponse({
required this.success,
required this.code,
required this.message,
required this.data,
});