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