ExceptionThrownEvent.fromJson constructor

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

Implementation

factory ExceptionThrownEvent.fromJson(Map<String, dynamic> json) {
  return ExceptionThrownEvent(
    timestamp: Timestamp.fromJson(json['timestamp'] as num),
    exceptionDetails: ExceptionDetails.fromJson(
        json['exceptionDetails'] as Map<String, dynamic>),
  );
}