SunlightBordered constructor

const SunlightBordered({
  1. Key? key,
  2. required Widget child,
  3. double radius = 8.0,
  4. double strokeWidth = 2.0,
  5. Color lightColor = Colors.white,
  6. Color shadowColor = const Color(0x11000000),
  7. Clip clipBehavior = Clip.antiAlias,
})

Implementation

const SunlightBordered({
  super.key,
  required this.child,
  this.radius = 8.0,
  this.strokeWidth = 2.0,
  this.lightColor = Colors.white,
  this.shadowColor = const Color(0x11000000),
  this.clipBehavior = Clip.antiAlias,
});