Dart SDK
dart:collection
Maps
getValues
getValues
Dart SDK
dart:collection
Maps
getValues
method
getValues
Source
Dart SDK
dart:collection
Maps
Static methods
clear
containsKey
containsValue
forEach
getValues
isEmpty
isNotEmpty
length
mapToString
putIfAbsent
Constructors
Maps
Properties
hashCode
runtimeType
Operators
operator ==
Methods
noSuchMethod
toString
Iterable
getValues
(
Map
map
)
Source
static
Iterable getValues
(
Map map
)
{
return
map
.
keys
.
map
((
key
)
=>
map
[
key
]);
}