DoubleArrayCacheProvider constructor

DoubleArrayCacheProvider({
  1. required int width,
  2. required int height,
  3. required CacheIndexProvider<double> provider,
  4. double? initialValue,
  5. CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.normal,
})

Implementation

DoubleArrayCacheProvider(
    {required super.width,
    required super.height,
    required super.provider,
    super.initialValue,
    super.coordinatePlane});