TensorBufferUint8 constructor

TensorBufferUint8(
  1. List<int> shape
)

Creates a TensorBufferUint8 with specified shape.

Throws ArgumentError.notNull if shape is null. Throws ArgumentError if shape has non-positive elements.

Implementation

TensorBufferUint8(List<int> shape) : super(shape);