MyNetImageView constructor

MyNetImageView(
  1. String? imgURL, {
  2. double? width,
  3. double? height,
  4. Widget? placeWidget,
  5. BoxFit? fit = BoxFit.cover,
  6. bool isOval = false,
  7. Key? key,
  8. bool hasAnimation = true,
  9. Widget? errWidget,
})

Implementation

MyNetImageView(this.imgURL,
    {this.width,
    this.height,
    this.placeWidget,
    this.fit = BoxFit.cover,
    this.isOval = false,
    Key? key,
    this.hasAnimation = true,
    this.errWidget})
    : super(key: key);