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'
@override V get value => $value.value;