darkTheme property
Implementation
static final ThemeData darkTheme = ThemeData(
brightness: Brightness.dark,
primaryColor: Colors.blueGrey,
scaffoldBackgroundColor: Colors.black,
textTheme: TextTheme(
bodyLarge: TextStyle(color: Colors.white),
bodySmall: TextStyle(color: Colors.white70),
),
// Additional customization can be added here
);