ComAvatar constructor

const ComAvatar(
  1. String src, {
  2. Key? key,
  3. double size = 50,
  4. double? radius,
  5. BoxFit fit = BoxFit.cover,
  6. Widget? placeholder,
  7. Widget? builder,
})

Implementation

const ComAvatar(
  this.src, {
  super.key,
  this.size = 50,
  this.radius,
  this.fit = BoxFit.cover,
  this.placeholder,
  this.builder,
});