content property

ByteData get content

Implementation

ByteData get content {
  final nativeSlice = DartApi.native.signedBytes.contentGet(_ffi);
  final slice = ByteSlice(nativeSlice);
  try {
    return slice.toBytes();
  } finally {
    slice.dispose();
  }
}