clone method

List clone()

Implementation

List clone() {
  var newList = <Map>[];
  forEach((value) {
    newList.add(value.clone());
  });
  return newList;
}