urlAppMobileCCG static method

String urlAppMobileCCG({
  1. bool is4Share = true,
})

Implementation

static String urlAppMobileCCG({bool is4Share = true}) {
  var url = '\nAndroid :$urlGoogleStoreCCG';
  url += '\n\niOS :$urlAppleStoreCCG';
  url += '\n\nWeb :$urlWebSiteCCG';
  if (is4Share) {
    return url;
  }
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return urlGoogleStoreCCG;
    case TargetPlatform.iOS:
      return urlAppleStoreCCG;
    default:
      return url;
  }
}