UriImage constructor

UriImage(
  1. String uri, {
  2. double? width,
  3. double? height,
  4. Color? color,
  5. Key? key,
})

Implementation

UriImage(
  String uri, {
  this.width,
  this.height,
  this.color,
  Key? key,
})  : imageUri = ImageUri(uri),
      super(key: key);