Onboarding constructor

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

Implementation

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