OnlinePaymentDetailsDto constructor

OnlinePaymentDetailsDto(
  1. {String? senderAccountName,
  2. String? recipientAccountName,
  3. String? transactionId,
  4. required PaymentType type}
)

Implementation

OnlinePaymentDetailsDto({
  this.senderAccountName,
  this.recipientAccountName,
  this.transactionId,
  required PaymentType type,
}) : super(
        type: type,
      );