Published
- 1 min read
dart read from terminal
The solution for this is noted below
dart read from terminal
Solution
import 'dart:io';
void main(){
var input = stdin.readLineSync();
}
Try other methods by searching on the site. That is if this doesn’t work