LoyaltyPoints constructor

LoyaltyPoints({
  1. String? name,
  2. String? pointsValue,
  3. double? ratio,
})

Implementation

LoyaltyPoints({
  this.name,
  this.pointsValue,
  this.ratio,
});