modify method
StatusBarProperties
modify({
- bool? contrastEnforced,
- Color? color,
- Brightness? brightness,
- Brightness? iconBrightness,
- bool? transparency,
Implementation
StatusBarProperties modify({
bool? contrastEnforced,
Color? color,
Brightness? brightness,
Brightness? iconBrightness,
bool? transparency,
}) {
return StatusBarProperties(
contrastEnforced: contrastEnforced ?? this.contrastEnforced,
color: color ?? this.color,
brightness: brightness ?? this.brightness,
iconBrightness: iconBrightness ?? this.iconBrightness,
transparency: transparency ?? this.transparency,
);
}