PictureMarkerSymbol constructor

PictureMarkerSymbol()

Creates a picture marker symbol.

Implementation

factory PictureMarkerSymbol() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PictureMarkerSymbol_create(errorHandler);
  });
  return ArcGISSymbol._instanceCache.instanceWith(handle);
}