UiAvatar constructor

const UiAvatar({
  1. Key? key,
  2. String? imageUrl,
  3. double size = 48,
  4. Color borderColor = Colors.blueAccent,
  5. double borderWidth = 2,
  6. bool showStatus = false,
  7. Color statusColor = Colors.green,
})

Implementation

const UiAvatar({
  super.key,
  this.imageUrl,
  this.size = 48,
  this.borderColor = Colors.blueAccent,
  this.borderWidth = 2,
  this.showStatus = false,
  this.statusColor = Colors.green,
});