deepCopyList<T> static method

List<T> deepCopyList<T>(
  1. List array
)

Deep copy the list.

Implementation

static List<T> deepCopyList<T>(List array) =>
    copier.deepCopyList(array);