tensorValAsBytes property

List<int> tensorValAsBytes

Implementation

core.List<core.int> get tensorValAsBytes => convert.base64.decode(tensorVal!);
void tensorValAsBytes=(List<int> bytes_)

Implementation

set tensorValAsBytes(core.List<core.int> bytes_) {
  tensorVal =
      convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}