Ionic 4 Modal Controller

Ionic 4- Creating Modal with ShowBackDrop:true, creates backdrop on modal iteself

Code:
async naviagte(){
const myModal = await this.modalCtrl.create({
component: TestModalPage,
componentProps: {
},
showBackdrop:true,
backdropDismiss:true,
cssClass: ‘healthMeasurementModal’

});

It is creating Modal, but on backdrop on component itself like below
I want backdrop effect outside of modal and clicking outside should dismiss the modal.

Please help.