OnboardingWidget constructor

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

Implementation

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