CustomerSummaryModel constructor Null safety

CustomerSummaryModel(
  1. {double? loyaltyPoints,
  2. bool? loyaltyPointsEnabled,
  3. dynamic loyaltyProgramName,
  4. dynamic loyaltyProgramId,
  5. int? wishListCount,
  6. int? ordersThisMonth}
)

Implementation

CustomerSummaryModel({
  this.loyaltyPoints,
  this.loyaltyPointsEnabled,
  this.loyaltyProgramName,
  this.loyaltyProgramId,
  this.wishListCount,
  this.ordersThisMonth,
});