deepCopy method

List<Map<Map<K1, V1>, V>> deepCopy({
  1. bool growable = true,
})

Returns a new List that contains a deep copy of every element from this.

Implementation

List<Map<Map<K1, V1>, V>> deepCopy({bool growable = true}) {
  return map((e) => e.deepCopy()).toList(growable: growable);
}