loadGeoJson method
void
loadGeoJson(
- String? url, [
- DataGeoJsonOptions? options,
- void callback(
- List<
DataFeature?> ?
- List<
Implementation
void loadGeoJson(
String? url, [
DataGeoJsonOptions? options,
void Function(List<DataFeature?>?)? callback,
]) {
callMethod(this, 'loadGeoJson', [
url,
options,
callback == null
? null
: allowInterop((p0) => callback(p0?.cast<DataFeature?>()))
]);
}