PaymentResponse constructor

PaymentResponse({
  1. required String paymentId,
  2. required bool isSuccess,
  3. required String token,
  4. required int returnCode,
  5. required String errorMessage,
})

Implementation

PaymentResponse({
  required this.paymentId,
  required this.isSuccess,
  required this.token,
  required this.returnCode,
  required this.errorMessage,
});