LoyaltyCardPaymentDetailsDto constructor

LoyaltyCardPaymentDetailsDto(
  1. {String? name,
  2. String? accountNumber,
  3. double? pointsUsed,
  4. double? pointsLeft,
  5. double? pointsGained,
  6. required PaymentType type}
)

Implementation

LoyaltyCardPaymentDetailsDto({
  this.name,
  this.accountNumber,
  this.pointsUsed,
  this.pointsLeft,
  this.pointsGained,
  required PaymentType type,
}) : super(
        type: type,
      );