OptimusAvatar constructor

const OptimusAvatar({
  1. Key? key,
  2. required String title,
  3. String? imageUrl,
  4. bool isSmall = true,
  5. bool isIndicatorVisible = false,
})

Implementation

const OptimusAvatar({
  super.key,
  required this.title,
  this.imageUrl,
  this.isSmall = true,
  this.isIndicatorVisible = false,
});