infoBlock static method

Alert infoBlock(
  1. String message
)

Creates a block info alert.

Implementation

static Alert infoBlock(String message) => Alert()
  ..info()
  ..block()
  ..message(message);