AliceCore constructor

AliceCore(
  1. dynamic _navigatorKey,
  2. dynamic showNotification,
  3. dynamic showInspectorOnShake,
  4. dynamic darkTheme,
  5. dynamic notificationIcon,
)

Implementation

factory AliceCore(
  _navigatorKey,
  showNotification,
  showInspectorOnShake,
  darkTheme,
  notificationIcon,
) {
  _singleton ??= AliceCore._(
    _navigatorKey,
    showNotification,
    showInspectorOnShake,
    darkTheme,
    notificationIcon,
  );
  return _singleton!;
}