ListViewerState constructor

  1. @JsonSerializable(includeIfNull: false)
const ListViewerState({
  1. @Default('app.bsky.graph.defs#listViewerState') String $type,
  2. bool? muted,
  3. @AtUriConverter() AtUri? blocked,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ListViewerState({
  @Default('app.bsky.graph.defs#listViewerState') String $type,
  bool? muted,
  @AtUriConverter() AtUri? blocked,

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