nice explanation one of best dart explain simple any body can easily understand....sir You are one of the best professor on you tube...from your video clear my programing concept .....
@ericberg21312 жыл бұрын
You have to run this program from the terminal for it to work properly
@majdkillawe31932 жыл бұрын
*** SOLUTION FOR THE INT.PARSE ** int x =int.parse(stdin.readLineSync()!)
@siddiquisharique2 жыл бұрын
My code runs in debug console instead of terminal and it doesn't takes user inputs even though there is no error.
@aufarrizkya2 жыл бұрын
Thanks! Nice explanation!
@texsesyt29022 жыл бұрын
for any one having error just put ! at the end. int num = int.parse( stdin.readLineSync() ! );
@younesferhat60922 жыл бұрын
thanks man
@JoneeL Жыл бұрын
or it needs to be a string so you can do int num = int.parse( "${ stdin.readLineSync }" ); this will also act like a string syntax is bit harder to read.
@MohamedAbauze10 ай бұрын
thanks man your solve my problem thankssss
@jeffdon9257 Жыл бұрын
Hi Can you please make a video that states the exact process of validating a user email address as a well as password using regex? Thank you
@nirojthapa50773 жыл бұрын
how to fix this while taking input Error: The argument type 'String?' can't be assigned to the parameter type 'String' because 'String?' is nullable and 'String' isn't.
@JohanJurrius3 жыл бұрын
Did you check out this video of mine? kzbin.info/www/bejne/gqbPp5ueec6kh9k . In the description of the videos you will find a link to the playlist. Better to follow the playlist.
@luisgassier72513 жыл бұрын
String? tipo = stdin.readLineSync(); opc = int.parse(tipo!);
@abdulfatahbajeh65422 жыл бұрын
Same issue over here
@siddiquisharique2 жыл бұрын
Use var instead of String
@AliJawad-q5d2 жыл бұрын
How to find the data type entered in terminal? Because the only data type I'm getting is " String " even tho I put numbers in there
@siddiquisharique2 жыл бұрын
You have to convert string values to double or integers.
@Sinan-sngl Жыл бұрын
thank u sir
@Kyun_____8 ай бұрын
Thanks
@minhazrahman48282 жыл бұрын
Hello sir why import "dart:io"; is not supported?? they show me that "unsupported import(s) dart:io" what should i do now sir??
@JohanJurrius2 жыл бұрын
Please check if it is like this: import 'dart:io';
@chadkhan2772 жыл бұрын
@@JohanJurrius sir i face same problem. what can i do now?
@omerfarukseckin2 жыл бұрын
my code isn't working ı can't understand where is my mistake
@mohsenahmedofficial72152 жыл бұрын
thx
@ahmedbahram46533 жыл бұрын
thank u
@ianrafaeltoh76792 жыл бұрын
not working, it will freeze the console
@josephakintola59882 жыл бұрын
Mine is saying global something
@zakariahouache54423 жыл бұрын
void main() { print('what is your age'); String age=stdin.readLineSync(); print("your age is = $age!"); } It says there is an error here where is the error in stdi
@JohanJurrius3 жыл бұрын
What is the error?
@NitinVarma2 жыл бұрын
It's a null safety error. Try using Syntax: String? or Syntax: stdin.readLineSync()!;