value property

  1. @override
E 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

@override
final E value;