defaultFetchStrategy static method

Future<FetchInstructions> defaultFetchStrategy(
  1. Uri uri,
  2. FetchFailure? failure
)

The FetchStrategy that NetworkImageWithRetry uses by default.

Implementation

static Future<FetchInstructions> defaultFetchStrategy(
    Uri uri, FetchFailure? failure) {
  return _defaultFetchStrategyFunction(uri, failure);
}