reload method
Implementation
Future<void> reload() async {
if (_isCloudEnabled) {
await _loadDocumentFromCloud();
} else {
await _loadDocument(_documentPath);
}
}
Future<void> reload() async {
if (_isCloudEnabled) {
await _loadDocumentFromCloud();
} else {
await _loadDocument(_documentPath);
}
}