In Ionic 3, passing data to a popover was as simple as:
let popover = this.popoverCtrl.create(PopoverPage, {key1:value1, key2: value2});
and it could be retrieved with navParams
How do you achieve the same in Ionic 5? The documentation says nothing about passing data.