darkTheme property

ThemeData? get darkTheme

The dark theme configuration for the application.

Returns null by default, meaning no custom dark theme is applied. Example: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue, brightness: Brightness.dark))

Implementation

ThemeData? get darkTheme => null;