effectiveBorderColor property

Color? effectiveBorderColor

Computed border color with opacity and alpha

Implementation

Color? get effectiveBorderColor {
  return borderColor != null
      ? Colors.withTransparency(
          borderColor!,
          opacity: borderOpacity,
          alpha: borderAlpha,
        )
      : null;
}