1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can update conversation settings from mobile application

This commit is contained in:
2021-04-11 14:31:38 +02:00
parent f546cdb060
commit 15ba251440
4 changed files with 117 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
/// Notifications settings
///
/// @author Pierre Hubert
class NotificationsSettings {
bool allowConversations;
bool allowNotificationsSound;
NotificationsSettings({
@required this.allowConversations,
@required this.allowNotificationsSound,
}) : assert(allowConversations != null),
assert(allowNotificationsSound != null);
}