MephistoAvatar constructor

const MephistoAvatar({
  1. Key? key,
  2. String? image,
  3. double? height = 36,
  4. double? width = 36,
  5. bool? isNetworkImage = false,
})

Implementation

const MephistoAvatar({
  super.key,
  this.image,
  this.height = 36,
  this.width = 36,
  this.isNetworkImage = false,
});