KImage constructor

KImage(
  1. String imageUrl, {
  2. BoxFit? boxFit,
  3. double? width,
  4. double? height,
  5. String? placeholder,
  6. String? errorWidget,
  7. double placeholderW = 40.0,
  8. double placeholderH = 40.0,
  9. Key? key,
})

Implementation

KImage(this.imageUrl,
    {this.boxFit,
    this.width,
    this.height,
    this.placeholder,
    this.errorWidget,
    this.placeholderW = 40.0,
    this.placeholderH = 40.0,
    Key? key})
    : super(key: key);