cacheKey property
String
get
cacheKey
String used by in-flight maps and disk cache files.
Implementation
String get cacheKey {
return [
sourceScope,
pageIndex,
width,
height,
rotation,
_colorToArgb(options.backgroundColor),
options.drawAnnot ? 1 : 0,
options.drawForm ? 1 : 0,
options.compression.name,
options.jpegQuality,
].join('_');
}