StatusBarProperties.dark constructor
StatusBarProperties.dark({
- Color color = Colors.transparent,
- bool? contrastEnforced,
- Brightness brightness = Brightness.dark,
- Brightness? iconBrightness,
- bool? transparency,
Implementation
factory StatusBarProperties.dark({
Color color = Colors.transparent,
bool? contrastEnforced,
Brightness brightness = Brightness.dark,
Brightness? iconBrightness,
bool? transparency,
}) {
return StatusBarProperties(
color: color,
contrastEnforced: contrastEnforced,
brightness: brightness,
iconBrightness: iconBrightness ?? brightness,
transparency: transparency,
);
}