LinkFivePlan constructor

LinkFivePlan({
  1. required String productId,
  2. required String planId,
  3. required String rootId,
  4. required DateTime purchaseDate,
  5. required DateTime endDate,
  6. required String storeType,
  7. String? customerUserId,
  8. bool? isTrial,
  9. String? familyName,
  10. String? attributes,
  11. String? duration,
})

Implementation

LinkFivePlan({
  required this.productId,
  required this.planId,
  required this.rootId,
  required this.purchaseDate,
  required this.endDate,
  required this.storeType,
  this.customerUserId,
  this.isTrial,
  this.familyName,
  this.attributes,
  this.duration,
});