CustomCircleAvatar constructor

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

Implementation

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