Updated version: //Optional Positional Parameters void printCountries(String name1,[String? name2, String? name3]){ print("Name 1 is $name1"); print("Name 2 is $name2"); print("Name 3 is $name3"); }
@syedakomalshah65162 жыл бұрын
short videos full of knowledge, i am just loving it.
@سيفالشمري-ض1ث6و4 жыл бұрын
you are THEE BEST teacher in the world! thank you very much
@karthickrajalearn5 жыл бұрын
0m 30 sec Thanks for your Slide about Parameters 👍👍👍👍👍 3m 35sec Awesome Optional Parameter 4m 19sec Great Guide Extenslding Optional Parameter
@brainjoy2312 жыл бұрын
Really awesome playlist with all the required information of dart language. Loving it
@sdmagic Жыл бұрын
In Dart 3.0, the code in the video doesn't work. Dart 3.0 has null safety rules that won't allow: func([int parameter]). That function won't compile. So for the examples in the video to compile and run, you'll need to write it as: void printCountries(String name1, [String name2 = "Italy", String name3 = "England"]) { ... Note the equals string syntax.
@imgeekyt Жыл бұрын
Thanks man
@lone.wo1f5 жыл бұрын
You are awesome bro... Your videos are very detailed and well explained..
@saisasisai4 жыл бұрын
Nice 👌 Tutorial series ...!
@MohamedsamiKhiari4 жыл бұрын
great tuto
@rudreshsp32363 жыл бұрын
1.does optional parameters should be always be at the end, ?? 2. can we have the only middle parameter as optional..??
@maniksony4 жыл бұрын
you didn't mention that optional parameters must be present at last
@Muhammadafaqakram7866 ай бұрын
now optional parameter is different syntax not working that code sir?
@jriks_3 жыл бұрын
AWESOME!
@shaulblack39845 жыл бұрын
a. thanks for the great tutorial b. is there any way to turn parameter String name2 into optional without changing the order?
@chaitanyadeshpande72414 жыл бұрын
Same problem happening with me
@codemolecules41444 жыл бұрын
If you use named parameters, the order is irrelevant. With positional parameters, you can make optional only from right to left.
@nasirmehmood_5 жыл бұрын
is it valid on return statements ?
@tanveersyed99993 ай бұрын
awsome
@manikandand25414 жыл бұрын
nice
@Yuri144Shambles5 жыл бұрын
does somebody know if i can make like the first parameter opcional and the las one too but keep the second parameter required?