MiniAvatar constructor

const MiniAvatar({
  1. Key? key,
  2. ImageProvider<Object>? image,
  3. String? text,
  4. double size = 40,
})

Implementation

const MiniAvatar({
  super.key,
  this.image,
  this.text,
  this.size = 40,
});