SstSplashScreen constructor

const SstSplashScreen({
  1. Key? key,
  2. required List<String> productIds,
  3. required List<String> subscriptionIds,
  4. required bool showAd,
  5. required BaseSettings settings,
  6. required void onInitAdsCompleted(
    1. BuildContext
    ),
  7. required void onSelectLanguageCompleted(
    1. BuildContext
    ),
  8. Widget? customWidget,
})

Implementation

const SstSplashScreen({
  super.key,
  required this.productIds,
  required this.subscriptionIds,
  required this.showAd,
  required this.settings,
  required this.onInitAdsCompleted,
  required this.onSelectLanguageCompleted,
  this.customWidget,
});