ClusterTimeline.fromJson constructor
Implementation
factory ClusterTimeline.fromJson(Map<String, dynamic> json) {
return ClusterTimeline(
creationDateTime: timeStampFromJson(json['CreationDateTime']),
endDateTime: timeStampFromJson(json['EndDateTime']),
readyDateTime: timeStampFromJson(json['ReadyDateTime']),
);
}