first property

AudioTrack first

Implementation

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