LoadingScreen constructor

LoadingScreen(
  1. GlobalKey<State<StatefulWidget>> globalKey,
  2. bool darkTheme
)

Implementation

factory LoadingScreen(GlobalKey globalKey, bool darkTheme) {
  instance ??= LoadingScreen._(globalKey, darkTheme);
  return instance!;
}