toString method
A string representation of this object.
Some classes have a default textual representation,
often paired with a static parse
function (like int.parse).
These classes will provide the textual representation as
their string representation.
Other classes have no meaningful textual representation
that a program will care about.
Such classes will typically override toString
to provide
useful information when inspecting the object,
mainly for debugging or logging.
Implementation
@override
String toString() {
return 'ModerationQueryStatusesInput(queueCount: $queueCount, queueIndex: $queueIndex, queueSeed: $queueSeed, includeAllUserRecords: $includeAllUserRecords, subject: $subject, comment: $comment, reportedAfter: $reportedAfter, reportedBefore: $reportedBefore, reviewedAfter: $reviewedAfter, hostingDeletedAfter: $hostingDeletedAfter, hostingDeletedBefore: $hostingDeletedBefore, hostingUpdatedAfter: $hostingUpdatedAfter, hostingUpdatedBefore: $hostingUpdatedBefore, hostingStatuses: $hostingStatuses, reviewedBefore: $reviewedBefore, includeMuted: $includeMuted, onlyMuted: $onlyMuted, reviewState: $reviewState, ignoreSubjects: $ignoreSubjects, lastReviewedBy: $lastReviewedBy, sortField: $sortField, sortDirection: $sortDirection, takendown: $takendown, appealed: $appealed, limit: $limit, tags: $tags, excludeTags: $excludeTags, cursor: $cursor, collections: $collections, subjectType: $subjectType, minAccountSuspendCount: $minAccountSuspendCount, minReportedRecordsCount: $minReportedRecordsCount, minTakendownRecordsCount: $minTakendownRecordsCount, minPriorityScore: $minPriorityScore, ageAssuranceState: $ageAssuranceState, \$unknown: ${$unknown})';
}