getDarkTheme static method
暗夜主题
Implementation
static ThemeData getDarkTheme({FlexScheme? scheme}) {
  return FlexThemeData.dark(
      scheme: scheme ?? FlexScheme.sakura,
      surfaceMode: FlexSurfaceMode.highScaffoldLowSurface,
      blendLevel: 15,
      appBarOpacity: 1,
      visualDensity: FlexColorScheme.comfortablePlatformDensity,
      useMaterial3: true);
}