deepCopy method

List<T> deepCopy()

Implementation

List<T> deepCopy() =>
    map<T>((T e) => SerializableData.copyGeneric<T>(e)).toList();