MutedWordsPref constructor

  1. @JsonSerializable(includeIfNull: false)
const MutedWordsPref({
  1. @Default('app.bsky.actor.defs#mutedWordsPref') String $type,
  2. @MutedWordConverter() required List<MutedWord> items,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory MutedWordsPref({
  @Default('app.bsky.actor.defs#mutedWordsPref') String $type,
  @MutedWordConverter() required List<MutedWord> items,

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