WearOsApp constructor

WearOsApp({
  1. Key? key,
  2. required dynamic screenBuilder(
    1. BuildContext context
    ),
  3. Widget? splashIconWidget,
  4. String? splashIcon,
  5. Color splashBackgroundColor = Colors.black,
  6. dynamic onStarted(
    1. BuildContext context
    )?,
  7. Duration splashDuration = const Duration(seconds: 1),
  8. ThemeData? theme,
})

Implementation

WearOsApp(
    {super.key,
    required this.screenBuilder,
    this.splashIconWidget,
    this.splashIcon,
    this.splashBackgroundColor = Colors.black,
    this.onStarted,
    this.splashDuration = const Duration(seconds: 1),
    this.theme}) {
}