Program constructor

Program({
  1. required String $id,
  2. required String title,
  3. required String description,
  4. required String tag,
  5. required String icon,
  6. required String url,
  7. required bool active,
  8. required bool xexternal,
  9. required String billingPlanId,
})

Implementation

Program({
  required this.$id,
  required this.title,
  required this.description,
  required this.tag,
  required this.icon,
  required this.url,
  required this.active,
  required this.xexternal,
  required this.billingPlanId,
});