UnspeccedGetTrendingTopicsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const UnspeccedGetTrendingTopicsOutput({
  1. @TrendingTopicConverter() required List<TrendingTopic> topics,
  2. @TrendingTopicConverter() required List<TrendingTopic> suggested,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory UnspeccedGetTrendingTopicsOutput({
  @TrendingTopicConverter() required List<TrendingTopic> topics,
  @TrendingTopicConverter() required List<TrendingTopic> suggested,

  Map<String, dynamic>? $unknown,
}) = _UnspeccedGetTrendingTopicsOutput;