BatchCreateFeaturesRequest.fromJson constructor

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

Implementation

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