Dart | Flutter Convert from Map to List

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

КОМЕНТАРІ • 15

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

    Thank you for the video. What if i wanted a list of all values of a particular key?

  • @materialapp
    @materialapp 2 роки тому +12

    Another way -
    var value = abc.values.toList();
    var key = abc.keys.toList();

    • @dbestech
      @dbestech  2 роки тому +2

      Yes, right. That's probably easier way to do.

  • @sherriboley6510
    @sherriboley6510 2 роки тому

    Love your teaching style. Hate that I can't see the ending of the video due to a huge ad that covers the code. Thanks!

  • @kenjishum2743
    @kenjishum2743 2 роки тому

    Thankyou! That's exactly what i need in my project.

    • @dbestech
      @dbestech  2 роки тому

      Glad I could help!

  • @juanmacias5922
    @juanmacias5922 2 роки тому

    Great video! Straight to the point!

  • @rizwanam4624
    @rizwanam4624 2 роки тому

    Can you make a vedio for mobile number login using OTP verification

  • @sithusoe8797
    @sithusoe8797 2 роки тому

    Thanks a lot !!!

  • @bashiruibrahim8443
    @bashiruibrahim8443 2 роки тому

    Thank you Sir

  • @meinkyelisee841
    @meinkyelisee841 2 роки тому

    In case you need the key and the value in the new list
    var fooList = bar.entries.toList()
    And great video as usual🙃

    • @dbestech
      @dbestech  2 роки тому

      Thanks for the info!