applyChange method

void applyChange(
  1. Change change
)

Applies a change

Implementation

void applyChange(Change change) {
  try {
    document.applyChange(change);
  } catch (e) {
    _requestMissingChanges();
  }
}