consumeLastDocumentChange method

TextDocumentChange? consumeLastDocumentChange()

Implementation

TextDocumentChange? consumeLastDocumentChange() {
  final change = _lastDocumentChange;
  _lastDocumentChange = null;
  return change;
}