Skip to content

Instantly share code, notes, and snippets.

@coderspacedev
Last active January 3, 2022 08:37
Show Gist options
  • Save coderspacedev/51457759577ca10c271187d72a6d205e to your computer and use it in GitHub Desktop.
Save coderspacedev/51457759577ca10c271187d72a6d205e to your computer and use it in GitHub Desktop.
List<String> productIds = [Platform.isAndroid ? 'android.test.purchased' : 'weekly'];
Future<void> initBilling() async {
billingHelper = FlutterBillingPlugin();
//pass secret key for iOS development auto renewal
await billingHelper?.init(productIds, "a59d0387edeb46e594fc00be5463ab7f", false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment