OutputLogEvent.fromJson constructor
Implementation
factory OutputLogEvent.fromJson(Map<String, dynamic> json) {
return OutputLogEvent(
ingestionTime: json['ingestionTime'] as int?,
message: json['message'] as String?,
timestamp: json['timestamp'] as int?,
);
}