CircleImageView constructor Null safety

const CircleImageView(
  1. {Key? key,
  2. Image? image,
  3. double width = 100,
  4. double height = 100}
)

Implementation

const CircleImageView({
  Key? key,
  this.image,
  this.width = 100,
  this.height = 100,
}) : super(key: key);