ImageWidget constructor

const ImageWidget({
  1. Key? key,
  2. required String uri,
})

Ensure you pass in the uri The uri could be a path as well

Implementation

const ImageWidget({super.key, required this.uri});