result property

  1. @override
Geodatabase? result
override

For a successfully completed job, the result returns the local geodatabase. Otherwise, null is returned.

If the job is in progress then a null result is returned until the job successfully completes. The returned geodatabase is in a not loaded state; use Geodatabase.load to load it. A geodatabase downloaded in this way can contain features, annotation and dimensions that are accessed with the Geodatabase.geodatabaseFeatureTables, Geodatabase.geodatabaseAnnotationTables and Geodatabase.geodatabaseDimensionTables collections, respectively.

Implementation

@override
Geodatabase? get result => _result.value;