value property - MapEntry class - dart:core library (original) (raw)
Vvalue
final
The value associated to key in a map.
final map = {'theKey': 'theValue'}; // Map<String, String>
var entry = map.entries.first; // MapEntry<String, String>
print(entry.value); // 'theValue'
Implementation
final V value;