NetworkImageWithRetry constructor

const NetworkImageWithRetry(
  1. String url, {
  2. double scale = 1.0,
  3. FetchStrategy fetchStrategy = defaultFetchStrategy,
  4. Map<String, Object>? headers,
})

Creates an object that fetches the image at the given url.

Implementation

const NetworkImageWithRetry(
  this.url, {
  this.scale = 1.0,
  this.fetchStrategy = defaultFetchStrategy,
  this.headers,
});