AwesomeCircleWidget constructor

const AwesomeCircleWidget({
  1. Key? key,
  2. double size = 50.0,
  3. required Widget child,
  4. AwesomeTheme? theme,
  5. double scale = 1.0,
})

Implementation

const AwesomeCircleWidget({
  super.key,
  this.size = 50.0,
  required Widget this.child,
  this.theme,
  this.scale = 1.0,
}) : icon = null;