showCustomTemplate method
Future<void>
showCustomTemplate(
- NotificationMessage message,
- String? applicationId,
- String template
override
Implementation
@override
Future<void> showCustomTemplate(NotificationMessage message,
String? applicationId, String template) async {
assert(message.templateType == TemplateType.custom,
'showCustomTemplate requires a message built with fromCustomTemplate');
await _showToast(message, applicationId, template);
}