getNotificationTemplate static method

Future<NotificationTemplate> getNotificationTemplate({
  1. required String key,
})

Retrieves Notification template. key is the template key. @since 4.0.3

Implementation

static Future<NotificationTemplate> getNotificationTemplate({
  required String key,
}) async {
  sbLog.i(StackTrace.current);
  return await _instance._chat.getNotificationTemplate(key: key);
}