deepClone method

JList deepClone()

Implementation

JList deepClone() {
  final json = jsonEncode(list);
  final clone = jsonDecode(json) as List<dynamic>;
  return JList(clone);
}