AggregatedProfileTime.fromJson constructor
Implementation
factory AggregatedProfileTime.fromJson(Map<String, dynamic> json) {
return AggregatedProfileTime(
period: (json['period'] as String?)?.toAggregationPeriod(),
start: timeStampFromJson(json['start']),
);
}