cached method

CacheProvider cached({
  1. required int width,
  2. required int height,
  3. CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.mirrored,
  4. bool lazy = false,
  5. 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,
  );
}