hardcoded property

List<Map<String, String>> hardcoded
final

Implementation

final List<Map<String, String>> hardcoded = [
  {
    "id": "yearly_plan",
    "title": "Yearly Plan",
    "description": "Includes 5000 credits",
    "price": "99.99",
    "priceString": "\$99.99",
    "currencyCode": "USD",
    "period": "P1Y",
  },
  {
    "id": "monthly_plan",
    "title": "Monthly Plan",
    "description": "Includes 750 credits",
    "price": "14.99",
    "priceString": "\$14.99",
    "currencyCode": "USD",
    "period": "P1M",
  },
  {
    "id": "weekly_plan",
    "title": "Weekly Plan",
    "description": "Includes 250 credits",
    "price": "4.99",
    "priceString": "\$4.99",
    "currencyCode": "USD",
    "period": "P1W",
  },
];