Why not just solving that with css respectively without adding anything with angular?
Use :last-child
selector
Not the correct css but something like
ion-list ion-item.item-block.item:last-child {
}
Or if you want to apply something on all child except the last one
ion-list ion-item.item-block.item:not(:last-child) {
}