DebugEvent.fromJson constructor

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

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,
  );
}