writeBlob method

void writeBlob(
  1. Uint8List v
)
inherited

Implementation

void writeBlob(Uint8List v) {
  if (v.isNotEmpty) {
    final b = commit(v.lengthInBytes);
    assert(b != _data);
    _copy(b, ByteData.view(v.buffer));
  }
}