HashMap<K, V>.of 构造函数
- Map<
K, V> other
创建一个包含所有 other
的键/值对的 HashMap。示例
final baseMap = <int, String>{1: 'A', 2: 'B', 3: 'C'};
final mapOf = HashMap<num, Object>.of(baseMap);
print(mapOf); // {1: A, 2: B, 3: C}
实现
factory HashMap.of(Map<K, V> other) => HashMap<K, V>()..addAll(other);