mapInPlace method
void
mapInPlace(
- E toElement(
- E
Implementation
void mapInPlace(E Function(E) toElement) {
for (var i = 0; i < value.length; i++) {
this[i] = toElement(value[i]);
}
_notifyListeners();
}