data property
A URL to a GeoJSON file, or inline GeoJSON.
Implementation
Future<String?> get data async {
return _style?.getStyleSourceProperty(id, "data").then((value) {
if (value.value != null) {
return value.value as String;
} else {
return null;
}
});
}