1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/models/notifications_settings.dart

17 lines
393 B
Dart
Raw Normal View History

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);
}