Ionic selectable option

Hello , I am using Ionic selectable tag to have a drop down to select the data I have .
I am able to use multiple selections, searching , clearing all , but I am not able to select All or deselect all at once . How can I use it. Help me add the the selectall/deselect (toggle) button in the dropdown.
This is the code:
<ionic-selectable
*ngIf=“userListLoading == false”
placeholder=“Select the user”
[(ngModel)]=“user.Id”
[items]=“UserList”
itemValueField=‘DisplayName’
itemTextField=‘DisplayName’
[isMultiple]=“true”
name=“user”
[canSearch]=“true”
[canClear]=“true”
(onChange)=“portChange($event)”
(ionCancel)=“onCancel($event)”>