showNotification static method

void showNotification(
  1. Map<String, dynamic> remoteMessage
)

Implementation

static void showNotification(Map<String, dynamic> remoteMessage) {
  try {
    plotlineChannel.invokeMethod("showNotification", remoteMessage);
  } catch(e) {
    debugPrint("Error in showNotification: $e");
  }
}