VoneImage constructor

VoneImage({
  1. Key? key,
  2. required double imageWidth,
  3. required double imageHeight,
  4. String? placeholder,
  5. required String imageUrl,
  6. ImageShape shape = ImageShape.None,
  7. BoxFit boxFit = BoxFit.cover,
  8. double radiusSize = 0,
})

Implementation

VoneImage(
    {Key? key,
    required this.imageWidth,
    required this.imageHeight,
    this.placeholder,
    required this.imageUrl,
    this.shape = ImageShape.None,
    this.boxFit = BoxFit.cover,
    this.radiusSize = 0})
    : super(key: key);