message static method

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

Helper method for creating custom symbol messages

Implementation

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