void throwIf(bool condition, String message, {Element? element}) { if (condition) { throw InvalidGenerationSourceError(message, element: element); } }