OutputLogEvent.fromJson constructor

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

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