SubjectQueryResult constructor
SubjectQueryResult({})
Implementation
factory SubjectQueryResult({
/// The number of results for this query
required int total,
/// The list of the subjects matching the query
@JsonKey(readValue: _readSubjectNames) @Default([]) List<String> subjects,
}) = _SubjectQueryResult;