CNetworkImage constructor

const CNetworkImage(
  1. String url, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.cover,
})

Implementation

const CNetworkImage(
  this.url, {
  super.key,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
});