deepCopy method

List<List<String>> deepCopy(
  1. List<List<String>> source
)

Implementation

List<List<String>> deepCopy(List<List<String>> source) {
  return source.map((e) => e.toList()).toList();
}