ImageNetwork constructor

const ImageNetwork({
  1. Key? key,
  2. required String url,
  3. required double? width,
  4. required double? height,
  5. Widget? errorWidget,
  6. required bool clipOval,
  7. dynamic onTap()?,
  8. required bool isGroup,
  9. required bool blocked,
  10. required bool unknown,
})

Implementation

const ImageNetwork({
  super.key,
  required this.url,
  required this.width,
  required this.height,
  this.errorWidget,
  required this.clipOval,
  this.onTap,
  required this.isGroup,
  required this.blocked,
  required this.unknown,
});