ImageView constructor

const ImageView({
  1. Key? key,
  2. String url = '',
  3. required String heroTag,
  4. ImageProvider<Object>? imageProvider,
})

Implementation

const ImageView({
  super.key,
  this.url = '',
  required this.heroTag,
  this.imageProvider,
});