exceptionParameter property

  1. @override
CatchClauseParameterImpl? exceptionParameter
override

Return the parameter whose value will be the exception that was thrown, or null if there is no 'catch' keyword.

Implementation

@override
CatchClauseParameterImpl? get exceptionParameter {
  return _exceptionParameter;
}
void exceptionParameter=(CatchClauseParameterImpl? parameter)

Implementation

set exceptionParameter(CatchClauseParameterImpl? parameter) {
  _exceptionParameter = parameter;
  _becomeParentOf(parameter);
}