Language: Dart
What is the reason for adding the exclamation mark at the end of the readLineSync() method for getting user input?
var age = int.parse(stdin.readLineSync()!);
Language: Dart
What is the reason for adding the exclamation mark at the end of the readLineSync() method for getting user input?
var age = int.parse(stdin.readLineSync()!);