OnboardingWidget constructor

OnboardingWidget({
  1. Key? key,
  2. String? atsign,
  3. required dynamic onboard(
    1. Map<String?, AtClientService>,
    2. String?
    ),
  4. required dynamic onError(
    1. Object?
    ),
  5. Widget? nextScreen,
  6. Widget? fistTimeAuthNextScreen,
  7. required AtClientPreference atClientPreference,
  8. Color? appColor,
  9. String? domain,
  10. required String appAPIKey,
})

Implementation

OnboardingWidget(
    {Key? key,
    this.atsign,
    required this.onboard,
    required this.onError,
    this.nextScreen,
    this.fistTimeAuthNextScreen,
    required this.atClientPreference,
    this.appColor,
    this.logo,
    this.domain,
    required this.appAPIKey});