BasicNetworkImage constructor

const BasicNetworkImage({
  1. required String imageUrl,
  2. double? width,
  3. double? height,
  4. BoxFit? fit,
  5. Key? key,
})

Implementation

const BasicNetworkImage({
  required this.imageUrl,
  this.width,
  this.height,
  this.fit,
  super.key,
});