ConversationReportView constructor
const
ConversationReportView({
- @JsonKey.new(name: 'conversation_report') required ConversationReport conversationReport,
- @JsonKey.new(name: 'conversation_information') required ConversationInfoView conversationInformation,
- @JsonKey.new(name: 'message_history') List<
PrivateMessageView> ? messageHistory, - required Person creator,
Implementation
const factory ConversationReportView({
@JsonKey(name: 'conversation_report') required ConversationReport conversationReport,
@JsonKey(name: 'conversation_information') required ConversationInfoView conversationInformation,
@JsonKey(name: 'message_history') List<PrivateMessageView>? messageHistory,
required Person creator,
}) = _ConversationReportView;