LxMap<K, V>.from constructor

LxMap<K, V>.from(
  1. Map<K, V> other
)

Creates an LxMap from an existing Map.

Implementation

factory LxMap.from(Map<K, V> other) {
  return LxMap<K, V>(Map<K, V>.from(other));
}