noteAlert static method

Alert noteAlert(
  1. String message
)

Creates a note alert.

Implementation

static Alert noteAlert(String message) => Alert()
  ..note()
  ..message(message);