PublisherQueryResult constructor

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

Implementation

factory PublisherQueryResult({
  /// The number of results for this query
  required int total,

  /// The list of the publishers matching the query
  @Default([]) List<String> publishers,
}) = _PublisherQueryResult;