value property

  1. @override
List<V> 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 List<V> value;