TrendData constructor

  1. @JsonSerializable(includeIfNull: false)
const TrendData({
  1. required String name,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory TrendData({
  /// The name of this trend.
  ///
  /// It includes "#" as prefix if it's a hashtag trend.
  required String name,
}) = _TrendData;