modify method

StatusBarProperties modify({
  1. bool? contrastEnforced,
  2. Color? color,
  3. Brightness? brightness,
  4. Brightness? iconBrightness,
  5. 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,
  );
}