Asserts that the condition is true
static void isTrue(bool condition, [String? message]) { if (!condition) { throw AssertionError(message ?? 'Assertion failed'); } }