for now, position is set during initiation of Notyf instance
is there a way to override it during a call ?
const notyf = new Notyf({
position: { x: 'center', y : 'top'}
})
// can we do this ? Or, would you please add this feature ?
notyf.error({
message: "Error!!",
position: { x: 'center', y : 'bottom'}
})
for now, position is set during initiation of Notyf instance
is there a way to override it during a call ?