diff --git a/lib/api/model/model.dart b/lib/api/model/model.dart index 182daad19f..23edbb100a 100644 --- a/lib/api/model/model.dart +++ b/lib/api/model/model.dart @@ -315,17 +315,17 @@ enum StreamPostPolicy { class Subscription extends ZulipStream { // final List subscribers; // we register with includeSubscribers false - final bool? desktopNotifications; - final bool? emailNotifications; - final bool? wildcardMentionsNotify; - final bool? pushNotifications; - final bool? audibleNotifications; - - final bool pinToTop; - final bool isMuted; + bool? desktopNotifications; + bool? emailNotifications; + bool? wildcardMentionsNotify; + bool? pushNotifications; + bool? audibleNotifications; + + bool pinToTop; + bool isMuted; // final bool? inHomeView; // deprecated; ignore - final String color; + String color; Subscription({ required super.streamId,