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