gpt4 book ai didi

flutter - 如何在 Dart 中获取 map 的键列表?

转载 作者:IT王子 更新时间:2023-10-29 06:56:40 27 4
gpt4 key购买 nike

我想用 dart 编程语言获取 map 的键列表。

我熟悉 python 中的字典,对于 python 中的相同目标,存在一种直接方法。我在 Dart 中找不到这个。

他们有什么解决办法吗?

最佳答案

void main() { 
var details = {'Usrname':'tom','Password':'pass@123'};
print(details.keys); \\ Gives an Iterable<String>.

\\ And to return a true List:
List newList = details.keys.toList();
}

(用户名,密码)

关于flutter - 如何在 Dart 中获取 map 的键列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56522758/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com