getCharErrorDisplay method

String getCharErrorDisplay(
  1. int c
)

Implementation

String getCharErrorDisplay(int c) {
  final s = getErrorDisplay(String.fromCharCode(c));
  return "'$s'";
}