export method

Future<Map<String, dynamic>?> export([
  1. String? id,
  2. Map<String, dynamic>? options
])

Exports current geometry data to GeoJSON. Alias for getGeoJSON to match Web SDK.

Implementation

Future<Map<String, dynamic>?> export([
  String? id,
  Map<String, dynamic>? options,
]) async {
  return await getGeoJSON(id, options);
}