symbolNotInScopeError function

String symbolNotInScopeError(
  1. String symbol
)

Implementation

String symbolNotInScopeError(String symbol) {
  return Intl.message(
    "The symbol '$symbol' was not found in the scope.",
    name: 'symbolNotInScopeErrorMessage',
    args: [symbol],
    desc: 'The error message describing a symbol that was not found in the scope.',
  );
}