IconCircle constructor

const IconCircle({
  1. Key? key,
  2. double size = 40.0,
  3. Widget? child,
})

Implementation

const IconCircle({
  Key? key,
  this.size = 40.0,
  this.child,
}) : super(key: key);