ReadIndexDatapointsRequest.fromJson constructor
Implementation
factory ReadIndexDatapointsRequest.fromJson(Map<String, dynamic> json) {
return ReadIndexDatapointsRequest(
indexEndpoint: json['indexEndpoint'] ?? '',
deployedIndexId: json['deployedIndexId'] ?? '',
ids: decodeList(json['ids']) ?? [],
);
}