copy property

Map<K, V> copy

Returns a new map from the current map

Implementation

Map<K, V> get copy {
  return Map<K, V>.from(this);
}