ImageWidget constructor

const ImageWidget({
  1. Key? key,
  2. required String url,
  3. Icon? erroIcon,
  4. double? width,
  5. double? height,
  6. BoxFit? fit,
})

Implementation

const ImageWidget({
  Key? key,
  required this.url,
  this.erroIcon,
  this.width,
  this.height,
  this.fit,
}) : super(key: key);