TextShadowConfiguration constructor

TextShadowConfiguration({
  1. double? opacity,
  2. String? color,
  3. double? offsetX,
  4. double? offsetY,
  5. double? radius,
})

Implementation

TextShadowConfiguration({
  this.opacity,
  this.color,
  this.offsetX,
  this.offsetY,
  this.radius,
});