FeatureCollection constructor

FeatureCollection()

Create a feature collection object.

Implementation

factory FeatureCollection() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureCollection_create(errorHandler);
  });
  return FeatureCollection._withHandle(handle);
}