I have this object with protected products:
protected products: {
[key: string]: {
color: string,
brand: string,
};
} = {};
products = {
scan12345: {color: "Orange", brand: "X"},
scan13813: {color: "Pink", brand: "X"},
}
What is the best way to iterate through these products in my component Template? I've attempted:
<ion-item *ngFor="let pro of products">
{{ pro.color }}
</ion-item>