NiceAvatar constructor

const NiceAvatar({
  1. Key? key,
  2. String? imageUrl,
  3. String? name,
  4. double size = 40,
  5. Color? backgroundColor,
  6. bool? online,
})

Implementation

const NiceAvatar({
  super.key,
  this.imageUrl,
  this.name,
  this.size = 40,
  this.backgroundColor,
  this.online,
});