I took a Material Select example and tried to set a default value from the ngOnInit method like this:
ngOnInit(): void {
this.animalControl.setValue({name: 'Cat', sound: 'Meow!'});
}
But it is not showing the default value in the select (there is only Meow). I do not know why.