CkSpotlight constructor

const CkSpotlight({
  1. Key? key,
  2. required Offset center,
  3. required double radius,
  4. required Color color,
})

Implementation

const CkSpotlight({
  super.key,
  required this.center,
  required this.radius,
  required this.color,
});