CustomCircleAvatar constructor

const CustomCircleAvatar({
  1. Key? key,
  2. String? image,
  3. double size = 50,
  4. bool nonAsset = false,
  5. Uint8List? byteImage,
})

Implementation

const CustomCircleAvatar({
  Key? key,
  this.image,
  this.size = 50,
  this.nonAsset = false,
  this.byteImage,
}) : super(key: key);