NullableArrayCache<T> constructor
NullableArrayCache<T> ({
- required int width,
- required int height,
- T? initialValue,
- CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.normal,
Implementation
NullableArrayCache(
{required int width,
required int height,
this.initialValue,
CacheCoordinatePlane coordinatePlane = CacheCoordinatePlane.normal})
: _cache = ArrayCache<T?>(
width: width,
height: height,
initialValue: initialValue,
coordinatePlane: coordinatePlane);