StepTimeline.fromJson constructor

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

Implementation

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