WelcomeScreen constructor

const WelcomeScreen({
  1. Key? key,
  2. required bool visible,
  3. required VoidCallback onClose,
  4. required String appName,
  5. bool isDark = false,
  6. dynamic onResolved(
    1. String apiUrl,
    2. String token,
    3. dynamic userData
    )?,
})

Implementation

const WelcomeScreen({
  Key? key,
  required this.visible,
  required this.onClose,
  required this.appName,
  this.isDark = false,
  this.onResolved,
}) : super(key: key);