bytes property

Object? get bytes

An ArrayBuffer with a copy of the data.

Implementation

Object? get bytes => _wrapped.bytes?.dartify();
set bytes (Object? v)

Implementation

set bytes(Object? v) {
  _wrapped.bytes = v?.jsify();
}