show static method

void show(
  1. LocalNotification notification
)

Implementation

static void show(LocalNotification notification) {
  if (notification.scaffoldKey != null) {
    notification.scaffoldKey?.currentState?.enqueue(notification);
    return;
  }
  key.currentState?.enqueue(notification);
}