ShadowConfiguration constructor

const ShadowConfiguration({
  1. double blurRadius = minBlurRadius,
  2. double opacity = minShadowOpacity,
  3. Color color = defaultShadowColor,
  4. Offset maxOffset = const Offset(maxShadowOffset, maxShadowOffset),
  5. double topOffset = minShadowTopOffset,
})

A set of values that define the shadow effect's behavior.

Implementation

const ShadowConfiguration(
    {this.blurRadius = minBlurRadius,
    this.opacity = minShadowOpacity,
    this.color = defaultShadowColor,
    this.maxOffset = const Offset(maxShadowOffset, maxShadowOffset),
    this.topOffset = minShadowTopOffset});