BatchCreateFeaturesRequest.fromJson constructor
Implementation
factory BatchCreateFeaturesRequest.fromJson(Map<String, dynamic> json) {
return BatchCreateFeaturesRequest(
parent: json['parent'] ?? '',
requests:
decodeListMessage(json['requests'], CreateFeatureRequest.fromJson) ??
[],
);
}