CustomAvatar constructor

const CustomAvatar({
  1. Key? key,
  2. String? imageUrl,
  3. String? placeholderAsset,
  4. double radius = 30,
  5. Color borderColor = Colors.blue,
  6. double borderWidth = 2,
})

Implementation

const CustomAvatar({
  Key? key,
  this.imageUrl,
  this.placeholderAsset,
  this.radius = 30,
  this.borderColor = Colors.blue,
  this.borderWidth = 2,
}) : super(key: key);