getStoreLink static method

Uri getStoreLink({
  1. required String bundleId,
  2. required String country,
})

Returns the store link for the Play Store.

Implementation

static Uri getStoreLink({
  required String bundleId,
  required String country,
}) {
  final storeUrl = 'https://play.google.com/store/apps/details?id=$bundleId';
  return Uri.parse(storeUrl);
}