Session.fromJson constructor
Implementation
factory Session.fromJson(Map<String, dynamic> json) {
return Session(
sessionId: json['sessionId'] as String,
sessionStartTs: json['sessionStartTs'] as int,
lastCachedTs: json['lastCachedTs'] as int,
startEvent: json['startEvent'] as String,
endEvent: json['endEvent'] as String,
);
}