Basic Toast Message
$('body').toast({message: 'I am a toast, nice to meet you !'});
Toast Message with Title
$('body').toast({title:"Hello, I'm Title",message: 'I am a toast, nice to meet you !'});
Toast Message with Progress Bar
$('body').toast({title:"Heyy!",message: 'I am a toast, nice to meet you !',showProgress: 'bottom'});
Toast Message with colored Progress Bar
$('body').toast({title:"Hello, I'm Title",message: 'I am a toast, nice to meet you !',showProgress: 'bottom',classProgress: 'red'});
Success Type Toast
$('body').toast({class: 'success',message: `You're using the good framework !`});
Error Type Toast
$('body').toast({class: 'error',message: `You're using the good framework !`});
Info Type Toast
$('body').toast({class: 'info',message: `You're using the good framework !`});
Toast Message with Bottom Right Position
$('body').toast({position: 'bottom right',message: 'I am a toast, nice to meet you !'});
Toast Message with Bottom Left Position
$('body').toast({position: 'bottom left',message: 'I am a toast, nice to meet you !'});