ShadowedCircle constructor

const ShadowedCircle({
  1. Key? key,
  2. required Widget child,
  3. double size = 100.0,
  4. double elevation = 5.0,
  5. Color color = Colors.white,
  6. Color shadowColor = Colors.black,
})

Implementation

const ShadowedCircle({super.key,
  required this.child,
  this.size = 100.0,
  this.elevation = 5.0,
  this.color = Colors.white,
  this.shadowColor = Colors.black,
});