showCustomTemplate method

  1. @override
Future<void> showCustomTemplate(
  1. NotificationMessage message,
  2. String? applicationId,
  3. 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);
}