FeatureCollection.fromJsonString constructor
- String jsonString
Implementation
factory FeatureCollection.fromJsonString(String jsonString) {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
final jsonCString = _CString(jsonString);
return runtimecore.RT_FeatureCollection_fromJSON(
jsonCString.bytes, errorHandler);
});
return FeatureCollection._fromHandle(objectHandle)!;
}