infoAlert static method

Alert infoAlert(
  1. String message
)

Creates an info alert.

Implementation

static Alert infoAlert(String message) => Alert()
  ..info()
  ..message(message);