getCountryCode method

  1. @Deprecated('Use InAppPurchasePlatfrom.countryCode')
Future<String> getCountryCode()

Implementation

@Deprecated('Use InAppPurchasePlatfrom.countryCode')
Future<String> getCountryCode() async {
  final BillingConfigWrapper billingConfig = await _billingClientManager
      .runWithClient((BillingClient client) => client.getBillingConfig());
  return billingConfig.countryCode;
}