outSpatialReference property

SpatialReference? outSpatialReference

The spatial reference that is used for the generated geodatabase.

If this is null, the Extent's spatial reference is used. If that is null the feature services spatial reference is then used.

Implementation

SpatialReference? get outSpatialReference => _outSpatialReference.value;
void outSpatialReference=(SpatialReference? value)

Implementation

set outSpatialReference(SpatialReference? value) =>
    _outSpatialReference.value = value;