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