ValidPass constructor

ValidPass({
  1. String? title,
  2. int? price,
  3. int? duration,
  4. String? currency,
})

Implementation

ValidPass({
  this.title,
  this.price,
  this.duration,
  this.currency,
});