ListConversationReports constructor

  1. @JsonSerializable.new(includeIfNull: false)
const ListConversationReports({
  1. @JsonKey.new(name: 'conversation_id') int? conversationId,
  2. int? limit,
  3. int? page,
  4. @JsonKey.new(name: 'unresolved_only') bool? unresolvedOnly,
  5. @JsonKey.new(name: 'message_history_limit') int? messageHistoryLimit,
  6. required String auth,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ListConversationReports({
  @JsonKey(name: 'conversation_id') int? conversationId,
  int? limit,
  int? page,
  @JsonKey(name: 'unresolved_only') bool? unresolvedOnly,
  @JsonKey(name: 'message_history_limit') int? messageHistoryLimit,
  required String auth,
}) = _ListConversationReports;