Tensor constructor

Tensor(
  1. Pointer<TfLiteTensor> ref
)

Implementation

Tensor(Pointer<TfLiteTensor> ref) : _ref = ref {
  checkArgument(_ref.address != nullptr.address, message: 'Unable to create Tensor.');
}