symbolNotInScopeError function
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.',
);
}