get isLast()

in src/app/components/ui-components/components/switcher/switcher.component.ts [49:51]


  get isLast(): boolean {
    return this.options.findIndex(v => v.value === this.formControl.value) === this.options.length - 1;
  }