DecoratedText constructor

const DecoratedText(
  1. String text, {
  2. double? fontSize,
  3. double? borderWidth,
  4. Gradient? fillGradient,
  5. Color? fillColor,
  6. FontWeight? fontWeight,
  7. Color? borderColor,
  8. List<Shadow>? shadows,
})

Implementation

const DecoratedText(
  this.text, {
  this.fontSize,
  this.borderWidth,
  this.fillGradient,
  this.fillColor,
  this.fontWeight,
  this.borderColor,
  this.shadows,
});