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