first property

SourceBuffer first

Implementation

SourceBuffer get first {
  if (this.length > 0) {
    return JS('SourceBuffer', '#[0]', this);
  }
  throw new StateError("No elements");
}