infoFullWidth static method

StyledBlock infoFullWidth(
  1. String message
)

Creates a full-width info block.

Implementation

static StyledBlock infoFullWidth(String message) => StyledBlock()
  ..info()
  ..fullWidth()
  ..message(message);