属性

V
final

在映射中与 关联的值。

final map = {'theKey': 'theValue'}; // Map<String, String>
var entry = map.entries.first; // MapEntry<String, String>
print(entry.value); // 'theValue'

实现

final V value;