toMutableByteData method

ByteData toMutableByteData()
inherited

Serializes this object to a mutable ByteData buffer.

Implementation

ByteData toMutableByteData() {
  final capacity = encodeSelfCapacity();
  final writer = RawWriter.withCapacity(capacity);
  encodeSelf(writer);
  return writer.toByteDataView();
}