value property Null safety

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