AgCircleWidget constructor

AgCircleWidget({
  1. double size = 50.0,
  2. Color? backgroundColor = Colors.transparent,
  3. Color? borderColor,
  4. double borderWidth = 0.0,
  5. Widget? child,
  6. List<BoxShadow>? shadows,
})

Implementation

AgCircleWidget({
  this.size = 50.0, // Default size is 50.0
  this.backgroundColor =
      Colors.transparent, // Default background color is transparent
  this.borderColor, // Border color (default is null)
  this.borderWidth = 0.0, // Default border width is 0.0
  this.child, // Child widget (default is null)
  this.shadows, // List of shadows (default is null)
});