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