effectiveOverlayColor property

Color effectiveOverlayColor

Implementation

Color get effectiveOverlayColor {
  return overlayColor ??
      (brightness == Brightness.light
          ? Colors.white.withOpacity(0.8)
          : Colors.black.withOpacity(0.8));
}