Circle constructor

const Circle({
  1. Key? key,
  2. required double radius,
  3. Color color = Colors.transparent,
  4. EdgeInsets padding = EdgeInsets.zero,
  5. EdgeInsets margin = EdgeInsets.zero,
  6. Border? border,
  7. Alignment? alignment,
  8. BoxDecoration? decoration,
  9. Widget? child,
})

Implementation

const Circle({
  super.key,
  required this.radius,
  this.color = Colors.transparent,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.border,
  this.alignment,
  this.decoration,
  this.child,
});