BatchCreateFeaturesResponse.fromJson constructor

BatchCreateFeaturesResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory BatchCreateFeaturesResponse.fromJson(Map<String, dynamic> json) {
  return BatchCreateFeaturesResponse(
    features: decodeListMessage(json['features'], Feature.fromJson) ?? [],
  );
}