showNotificationCustomTemplate method

Future<void> showNotificationCustomTemplate(
  1. NotificationMessage notification,
  2. String template
)

To send notifications with custom templates you must create NotificationMessage with fromCustomTemplate constructor

Implementation

Future<void> showNotificationCustomTemplate(
    final NotificationMessage notification, final String template) async {
  return WindowsNotificationPlatform.instance
      .showNotificationCustomTemplate(notification, applicationId, template);
}