ImageView constructor

ImageView({
  1. Key? key,
  2. required String url,
  3. double? width,
  4. double? height,
  5. VoidCallback? onClick,
  6. BoxShape? shape,
  7. BoxFit? fit,
  8. Color? color,
})

Implementation

ImageView({
  super.key,
  required this.url,
  this.width,
  this.height,
  this.onClick,
  this.shape,
  this.fit,
  this.color,
});