showNotificationPluginTemplate method

Future<void> showNotificationPluginTemplate(
  1. NotificationMessage templaate
)

To send notifications with plugin templates you must create NotificationMessage with fromPluginTemplate constructor

Implementation

Future<void> showNotificationPluginTemplate(
    final NotificationMessage templaate) async {
  return WindowsNotificationPlatform.instance
      .showNotification(templaate, applicationId);
}