CircleAvatarRoutingImage constructor

const CircleAvatarRoutingImage({
  1. required String mediaUrl,
  2. required String toNamed,
  3. double radius = 25,
  4. int? height,
  5. int? width,
  6. BoxFit fit = BoxFit.cover,
  7. bool enableRouting = true,
  8. dynamic arguments,
  9. Key? key,
})

Implementation

const CircleAvatarRoutingImage({
  required this.mediaUrl, required this.toNamed,
  this.radius = 25, this.height, this.width,
  this.fit = BoxFit.cover, this.enableRouting = true,
  this.arguments, super.key,}
);