Extensions in Dart - Learn How to Extend the Functionality of New and Existing Types with Extensions

Поділитися
Вставка
  • Опубліковано 15 вер 2024

КОМЕНТАРІ • 15

  • @ashiquealimughal7684
    @ashiquealimughal7684 Рік тому +1

    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!

  • @blueice1364
    @blueice1364 Рік тому

    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!

  • @adesezio
    @adesezio 11 місяців тому +1

    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

  • @Abdullah_ahmed_shekhMohamed
    @Abdullah_ahmed_shekhMohamed Рік тому +1

    I hope one day i have your energy and time management and skills, I'm proud of you 👏🥰

  • @harishprasadrajeurs2771
    @harishprasadrajeurs2771 5 місяців тому +1

    thanks for sharing knowledge😇

  • @user-vi2fp6dl7b
    @user-vi2fp6dl7b 8 місяців тому +1

    Thank you very much!

  • @sumitmishra3864
    @sumitmishra3864 Рік тому

    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.

  • @Ajajajajajjs_jk
    @Ajajajajajjs_jk 2 місяці тому +1

    thank you so much

  • @nero1375
    @nero1375 Рік тому

    Damn! Extensions is really a powerful feature!

  • @soyalvdev
    @soyalvdev 18 днів тому

    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.

  • @srijanshovit844
    @srijanshovit844 Рік тому +1

    Just awesome Vandad!!

  • @أحمدالنحراوى-م9غ
    @أحمدالنحراوى-م9غ 3 місяці тому

    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?

  • @learnandearn1851
    @learnandearn1851 Рік тому

    Thank you sir

  • @freeWare2023
    @freeWare2023 Рік тому

    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;
    }
    }