MembershipTable constructor

const MembershipTable({
  1. Key? key,
  2. required List<Datum> plans,
  3. required bool showAll,
  4. required String myPlan,
  5. required Rxn<String> selectedPlan,
})

Implementation

const MembershipTable({
  super.key,
  required this.plans,
  required this.showAll,
  required this.myPlan,
  required this.selectedPlan,
});