data property
ByteBuffer
get
data
Buffer of bytes to be written to the file.
Implementation
ByteBuffer get data => _wrapped.data.toDart;
set
data
(ByteBuffer v)
Implementation
set data(ByteBuffer v) {
_wrapped.data = v.toJS;
}