Returns a new List that contains a deep copy of every element from this.
List<Map<Map<K1, V1>, V>> deepCopy({bool growable = true}) { return map((e) => e.deepCopy()).toList(growable: growable); }