Thank you, you are the best Dart developer that I know, your course is incredible, even though my language is not English, I understand each topic perfectly
Thank you for this informative video on Dart extensions! I found it very helpful in learning how to extend the functionality of new and existing types with extensions. The examples were clear and concise, and I appreciate how you explained the concept in a way that was easy to understand. Keep up the great work!
Thank you Vandad for this awesome series. We are so lucky that we get your support in learning dart in a very easy and systematic manner. Please also make flutter complete series after completing this series.
Thank you for your videos. In the intro part, you wrote in terminal fswatch. I can't understand what that means. Do you have a video where it's explained? or can you please explain it?
I create ranges with List.generate(10) instead of 0..10. Ok, it's longer to type but I don't see any issue with it in a modern language. List.generate(100, (n) => n * 2) and you get a list of all even numbers up to 100, which it seems more powerful to me.
Hi what about this is it correct extension on Map { R? find(K key, R Function(T value) cast) { if (key != null && this[key] is T) { return this[key] ; } return null; } }
thanks for sharing knowledge😇
Thank you, you are the best Dart developer that I know, your course is incredible, even though my language is not English, I understand each topic perfectly
I read the article you wrote on your website, and now this. Truly awesome.
I am sure I won't be scared of extensions anymore in the future.
Thank you!
Thank you for this informative video on Dart extensions! I found it very helpful in learning how to extend the functionality of new and existing types with extensions. The examples were clear and concise, and I appreciate how you explained the concept in a way that was easy to understand. Keep up the great work!
Damn! Extensions is really a powerful feature!
Thank you very much!
thank you so much
I hope one day i have your energy and time management and skills, I'm proud of you 👏🥰
Just awesome Vandad!!
Thank you! Cheers!
Thank you Vandad for this awesome series. We are so lucky that we get your support in learning dart in a very easy and systematic manner. Please also make flutter complete series after completing this series.
Thank you for your videos.
In the intro part, you wrote in terminal fswatch. I can't understand what that means. Do you have a video where it's explained? or can you please explain it?
I create ranges with List.generate(10) instead of 0..10. Ok, it's longer to type but I don't see any issue with it in a modern language. List.generate(100, (n) => n * 2) and you get a list of all even numbers up to 100, which it seems more powerful to me.
Thank you sir
Hi what about this is it correct
extension on Map {
R? find(K key, R Function(T value) cast) {
if (key != null && this[key] is T) {
return this[key] ;
}
return null;
}
}