launchDeveloperSite method

Future<bool> launchDeveloperSite()

Implementation

Future<bool> launchDeveloperSite() async {
  final url = await appService.fetchDeveloperSiteUrl();
  if (url.isEmpty) return false;
  return UrlLauncher.launchUrl(url: url);
}