value property Null safety
final
The value associated to key in the map.
final map = {'theKey': 'theValue'};
var entry = map.entries.first;
print(entry.value); // theValue
Implementation
final V value;
The value associated to key in the map.
final map = {'theKey': 'theValue'};
var entry = map.entries.first;
print(entry.value); // theValue
final V value;