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