Avatar constructor

const Avatar({
  1. Key? key,
  2. required double radius,
  3. required String name,
  4. required double fontsize,
  5. bool random = false,
  6. int? count,
  7. String? img,
})

Implementation

const Avatar({
  Key? key,
  required this.radius,
  required this.name,
  required this.fontsize,
  this.random = false,
  this.count,
  this.img,
}) : super(key: key);