cached method
CacheProvider
cached({
- required int width,
- required int height,
- CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.mirrored,
- bool lazy = false,
- double? initialValue,
Implementation
CacheProvider cached({
required int width,
required int height,
CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.mirrored,
bool lazy = false,
double? initialValue,
}) {
return CacheProvider(
width: width,
height: height,
generator: this,
coordinatePlane: coordinatePlane,
initialValue: initialValue,
lazy: lazy,
);
}