Flutter: get different plans from subscription

399 Views Asked by At

I have one subscription with 2 plans:

enter image description here

The IDs I have created in Flutter are these:

const List<String> _androidProductIds = <String>[
  'plus',
  'pro',
  'basic', // this is the one
];

I have tried adding basic-month and basic-year but I only get the first one. How could I choose between plans within the same subscription?

0

There are 0 best solutions below