The message that describes the current exception.
@override String? get message { var s = super.message ?? ''; if (paramName != null) { s += ' (Parameter \'$paramName\')'; } return s; }