ClusterTimeline.fromJson constructor

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

Implementation

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