CheckPaymentDetailsDto constructor

CheckPaymentDetailsDto(
  1. {String? drawee,
  2. String? payee,
  3. DateTime? dateOfIssue,
  4. String? drawer,
  5. String? sortCode,
  6. String? accountNumber,
  7. required PaymentType type}
)

Implementation

CheckPaymentDetailsDto({
  this.drawee,
  this.payee,
  this.dateOfIssue,
  this.drawer,
  this.sortCode,
  this.accountNumber,
  required PaymentType type,
}) : super(
        type: type,
      );