GeoEngine constructor
GeoEngine({})
Implementation
GeoEngine({
required this.apiKey,
String? managementUrl,
String? ingestUrl,
this.timeout = const Duration(seconds: 10),
this.debug = false,
this.androidCloudProjectNumber,
http.Client? client,
}) : managementUrl = managementUrl ?? _defaultManagementUrl,
ingestUrl = ingestUrl ?? _defaultIngestUrl,
_client = client ?? http.Client() {
_initInternals();
}