CustomNetworkImage constructor

const CustomNetworkImage({
  1. Key? key,
  2. required String imageUrl,
  3. double height = 60,
  4. double width = 60,
  5. double radius = 12,
  6. bool clickable = true,
})

Implementation

const CustomNetworkImage({
  super.key,
  required this.imageUrl,
  this.height = 60,
  this.width = 60,
  this.radius = 12,
  this.clickable = true,
});