factory LogException.fromMap(Map<String, dynamic> json) => LogException( type: json["type"], message: json["message"], stackTrace: json["stackTrace"], );