repeat method
Implementation
void repeat(int count) {
for (var mob in getFamilyWithPoints()) {
mob.points = [for (var _ in range(end: count)) ...mob.points];
}
}
void repeat(int count) {
for (var mob in getFamilyWithPoints()) {
mob.points = [for (var _ in range(end: count)) ...mob.points];
}
}