Dart | Flutter Convert from Map to List

preview_player
Показать описание
Learn how to convert from Map to List in Dart Flutter
Learn more here

0:00 Introduce
0:07 Creating a function for converting to List
1:16 Using arrow function to convert map to list

Buy me a coffee
Рекомендации по теме
Комментарии
Автор

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

materialapp
Автор

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

sanjapkoki
Автор

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

kenjishum
Автор

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!

sherriboley
Автор

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

rizwanam
Автор

In case you need the key and the value in the new list
var fooList = bar.entries.toList()

And great video as usual🙃

meinkyelisee