ImageInfo constructor

ImageInfo({
  1. Uri? url,
  2. Uri? secureUrl,
  3. String? type,
  4. double? width,
  5. double? height,
  6. String? alt,
})

Create image metadata information.

Implementation

ImageInfo(
    {this.url, this.secureUrl, this.type, this.width, this.height, this.alt});