Dart Beginner - Assert
void main() { //Here we see that the assert keyword validates the age within this function. print("Starting"); int age = 15; assert (age == 43); print("Finished"); }