I need to use Angular Material toaster in every page of my project and the message may contain html tags. But the html message is not working with Angular Material toaster.
$mdToast.show(
$mdToast.simple()
.textContent('Field is required <br> Some Other Content')
.position(pos)
.hideDelay(3000)
);
Any idea ?