textDocumentDidSave method
Notify that a text document was saved.
Implementation
void textDocumentDidSave({required String uri, String? text}) {
sendNotification('textDocument/didSave', {
'textDocument': {'uri': uri},
'text': ?text,
});
}