DanUIBlurredText constructor

const DanUIBlurredText({
  1. Key? key,
  2. String? text,
  3. TextStyle? style,
  4. double blurRadius = 5,
  5. double? offset = 5,
  6. Color? color = Colors.white,
  7. Color? shadowColor = Colors.black,
  8. Color? backgroundColor = Colors.transparent,
  9. Widget? overlayWidget,
  10. double borderRadius = 10,
})

Implementation

const DanUIBlurredText({
  super.key,
  this.text,
  this.style,
  this.blurRadius = 5,
  this.offset = 5,
  this.color = Colors.white,
  this.shadowColor = Colors.black,
  this.backgroundColor = Colors.transparent,
  this.overlayWidget,
  this.borderRadius = 10,
});