first property

Transform first

Implementation

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