sink method

Sink sink([
  1. int position = 0
])

Implementation

Sink sink([int position = 0]) {
  checkState(!_closed, 'closed');
  _openCount++;
  return FileHandleSink(this, position);
}