在映射中与 键 关联的值。
final map = {'theKey': 'theValue'}; // Map<String, String> var entry = map.entries.first; // MapEntry<String, String> print(entry.value); // 'theValue'
final V value;