effectiveAndroidUrl property

String? get effectiveAndroidUrl

Get the Android store URL (generated or custom)

Implementation

String? get effectiveAndroidUrl {
  if (androidStoreUrl != null) return androidStoreUrl;
  if (playStorePackage != null) {
    return 'https://play.google.com/store/apps/details?id=$playStorePackage';
  }
  return customUrl;
}