OnlinePaymentDetailsDto constructor
- {String? senderAccountName,
- String? recipientAccountName,
- String? transactionId,
- required PaymentType type}
Implementation
OnlinePaymentDetailsDto({
this.senderAccountName,
this.recipientAccountName,
this.transactionId,
required PaymentType type,
}) : super(
type: type,
);