RecupAvatar constructor

const RecupAvatar({
  1. Key? key,
  2. Color? backgroundColor,
  3. required String foto,
  4. RecupAvatarSize? size = RecupAvatarSize.small,
  5. bool active = false,
})

Implementation

const RecupAvatar({
  Key? key,
  this.backgroundColor,
  required this.foto,
  this.size = RecupAvatarSize.small,
  this.active = false,
}) : super(key: key);