decode static method
Implementation
static FeatureExtensionValue decode(Object result) {
result as List<Object?>;
return FeatureExtensionValue(
value: result[0] as String?,
featureCollection: (result[1] as List<Object?>?)?.map((e) {
return Map<Object?, Object?>.from(e as Map<dynamic, dynamic>)
.cast<String?, Object?>();
}).toList(),
);
}