activeUserPackages property
Implementation
List<Datum> get activeUserPackages {
return [
Datum(
id: Constants.FREE_PACKAGE,
price: 0,
type: ['INDIVIDUAL', 'CORPORATE'],
name: 'Explorer Pass',
),
...(upgradePackages.value.data ?? [])
.where((p) => (p.available ?? false)),
];
}