secondaryBackgroundColor property

Color secondaryBackgroundColor

Implementation

Color get secondaryBackgroundColor {
  if (brightness == Brightness.light) {
    return _secondaryBackgroundColor ?? _primaryTone.primaryTone(98);
  } else {
    return _secondaryBackgroundColor ??
        secondaryColor.withHslSaturation(0.0).withLightness(0.05);
  }
}