first property

SpeechGrammar first

Implementation

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