defaultDarkValueStyle static method
Default value style for dark theme
Implementation
static TextStyle defaultDarkValueStyle(BuildContext context) {
return Theme.of(context).textTheme.headlineSmall!.copyWith(
fontWeight: FontWeight.bold,
color: Colors.white,
);
}