load method
Loads the metadata for the object asynchronously.
If loading fails, the Future completes with an error of type ArcGISException.
Implementation
Future<void> load() {
if (_doneLoadingCompleter == null) {
_startCompleter();
_coreLoad();
}
return _doneLoadingCompleter!.future;
}