CircleWidget constructor

const CircleWidget(
  1. Color? color, {
  2. Widget? child,
  3. Key? key,
  4. double? width,
  5. double? height,
  6. double? radius,
  7. EdgeInsetsGeometry? padding,
  8. AlignmentGeometry? alignment = Alignment.center,
})

Implementation

const CircleWidget(
  this.color, {
  this.child,
  Key? key,
  this.width,
  this.height,
  this.radius,
  this.padding,
  this.alignment = Alignment.center,
}) : super(key: key);