show toast on windows platform.
// initialize toast with you app, product, company names.
await WinToast.instance().initialize(
appName: 'win_toast_example',
productName: 'win_toast_example',
companyName: 'mixin');
Pick a unique AUMID that will identify your Win32 app
This is typically in the form of [CompanyName].[AppName], but you want to ensure this is unique across all apps (feel free to add some digits at the end).
final toast = await WinToast.instance().showToast(
type: ToastType.text01, title: "Hello");
https://github.com/mohabouje/WinToast https://github.com/javacommons/strconv