source method

Source source([
  1. int position = 0
])

Implementation

Source source([int position = 0]) {
  checkState(!_closed, 'closed');
  _openCount++;
  return FileHandleSource(this, position);
}