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