result property

  1. @override
List<SyncLayerResult> result
override

For a successfully completed job, an array of SyncLayerResult is returned. If all edits to the geodatabase's tables and layers are synced successfully, an empty array is returned.

If the job did not succeed, a null result array is returned.

If the job succeeded, but individual edits failed to sync, the result array provides an array of each failed edit operation (FeatureEditResult) grouped by the geodatabase table name. Only errors are reported.

If the array is empty, it should be assumed all edits were synchronized properly and no edit errors were encountered during the sync process.

Implementation

@override
List<SyncLayerResult> get result => _result.value;