value property

V value
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;