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