FShadow constructor

const FShadow({
  1. Color highlightColor = FHighlightShadowColor,
  2. double highlightDistance = 3,
  3. double highlightBlur = 6,
  4. double highlightSpread = 1,
  5. Color shadowColor = FDarkShadowColor,
  6. double shadowDistance = 3,
  7. double shadowBlur = 6,
  8. double shadowSpread = 1,
  9. Offset? shadowOffset,
})

Implementation

const FShadow({
  this.highlightColor = FHighlightShadowColor,
  this.highlightDistance = 3,
  this.highlightBlur = 6,
  this.highlightSpread = 1,
  this.shadowColor = FDarkShadowColor,
  this.shadowDistance = 3,
  this.shadowBlur = 6,
  this.shadowSpread = 1,
  this.shadowOffset,
});