We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c94f6d commit 92230c0Copy full SHA for 92230c0
lib/api/model/model.dart
@@ -628,10 +628,15 @@ class ZulipStream {
628
final int streamId;
629
String name;
630
631
+ // We don't expect `true` for this until we declare the `archived_channels`
632
+ // client capability.
633
+ //
634
// Servers that don't send this property will only send non-archived channels;
635
// default to false for those servers.
636
+ // TODO(server-10) remove default and its comment
637
+ // TODO(#800) remove comment about `archived_channels` client capability.
638
@JsonKey(defaultValue: false)
- bool isArchived; // TODO(server-10) remove default and its comment
639
+ bool isArchived;
640
641
String description;
642
String renderedDescription;
0 commit comments