PublisherQueryResult constructor

PublisherQueryResult({
  1. required int total,
  2. @JsonKey.new(readValue: _readPublisherNames) @Default.new([]) List<String> publishers,
})

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;