errorBlock static method

Alert errorBlock(
  1. String message
)

Creates a block error alert.

Implementation

static Alert errorBlock(String message) => Alert()
  ..error()
  ..block()
  ..message(message);