resolve method
Resolves and returns the image data.
Implementation
@override
Future<ImageData> resolve() {
return _imageDataCache.resolve(
_NetworkImageCacheKey(
url,
headers,
maximumBytes: maximumBytes,
decodeFrame: decodeFrame,
allowedContentTypes: allowedContentTypes,
blockedContentTypes: blockedContentTypes,
),
_load,
);
}