I am having this object:
protected products: { 
 [key: string]: {
  color: string,
  brand: string,
 };
} = {};
products =  {
 scan12345: {color: "Orange", brand: "X"},
 scan13813: {color: "Pink", brand: "X"},
}
How can I iterate through this project in my component Tempate? I tried:
<ion-item *ngFor="let pro of products">
   {{ pro.color }}
</ion-item>