SubjectQueryResult constructor

SubjectQueryResult({
  1. required int total,
  2. @Default.new([]) List<String> subjects,
})

Implementation

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

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