packageSubtitle static method

String packageSubtitle(
  1. Datum package
)

Implementation

static String packageSubtitle(Datum package) {
  switch (package.planType) {
    case PlanType.explorerPass:
      return 'Step into a World of Exclusive Perks';
    case PlanType.signaturePass:
      return 'Elevate Your Experiences';
    case PlanType.prestigePass:
      return 'A Journey Beyond Expectations';
    // case PlanType.discoveryPass:
    // case PlanType.singlePass:
    //   return 'Begin Your Journey with Neo';
    // case PlanType.elitePass:
    //   return 'For the Frequent Traveler, with Style';
    // case PlanType.sovereignPass:
    //   return 'The Ultimate in Luxury and Privilege';
    // case PlanType.sovereignPassPlus:
    //   return 'The Ultimate in Luxury and Privilege';
    default:
      return '';
  }
}