message static method

String message(
  1. String symbol,
  2. String text
)

Create a formatted message with symbol

Implementation

static String message(String symbol, String text) {
  return '$symbol$text';
}