LastSeenObjectIdEvent.fromJson constructor
Implementation
factory LastSeenObjectIdEvent.fromJson(Map<String, dynamic> json) {
return LastSeenObjectIdEvent(
lastSeenObjectId: json['lastSeenObjectId'] as int,
timestamp: json['timestamp'] as num,
);
}