resumeUpdating method

void resumeUpdating({
  1. bool recursive = true,
})

Implementation

void resumeUpdating({bool recursive = true}) {
  updatingSuspended = false;

  if (recursive) {
    for (var submob in submobjects) {
      submob.resumeUpdating(recursive: true);
    }
  }
}