2020-04-27 13:27:37 +02:00
|
|
|
import 'package:comunic/enums/user_page_visibility.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
/// General settings
|
|
|
|
///
|
|
|
|
/// @author Pierre Hubert
|
|
|
|
|
|
|
|
class GeneralSettings {
|
|
|
|
final String email;
|
|
|
|
String firstName;
|
|
|
|
String lastName;
|
2020-04-27 18:44:41 +02:00
|
|
|
UserPageVisibility pageVisibility;
|
2020-04-27 18:51:54 +02:00
|
|
|
bool allowComments;
|
2020-04-27 18:58:18 +02:00
|
|
|
bool allowPostsFromFriends;
|
2020-04-27 13:37:43 +02:00
|
|
|
bool allowComunicEmails;
|
2020-04-27 19:01:30 +02:00
|
|
|
bool publicFriendsList;
|
2020-04-28 17:52:22 +02:00
|
|
|
String virtualDirectory;
|
2020-04-27 19:05:36 +02:00
|
|
|
String personalWebsite;
|
2020-04-27 19:21:30 +02:00
|
|
|
String publicNote;
|
2020-04-27 13:27:37 +02:00
|
|
|
|
|
|
|
GeneralSettings({
|
|
|
|
@required this.email,
|
|
|
|
@required this.firstName,
|
|
|
|
@required this.lastName,
|
|
|
|
@required this.pageVisibility,
|
|
|
|
@required this.allowComments,
|
|
|
|
@required this.allowPostsFromFriends,
|
|
|
|
@required this.allowComunicEmails,
|
|
|
|
@required this.publicFriendsList,
|
|
|
|
@required this.virtualDirectory,
|
2020-04-27 13:27:59 +02:00
|
|
|
@required this.personalWebsite,
|
2020-04-27 13:27:37 +02:00
|
|
|
@required this.publicNote,
|
|
|
|
}) : assert(email != null),
|
|
|
|
assert(firstName != null),
|
|
|
|
assert(lastName != null),
|
|
|
|
assert(pageVisibility != null),
|
|
|
|
assert(allowComments != null),
|
|
|
|
assert(allowPostsFromFriends != null),
|
2020-04-27 13:37:43 +02:00
|
|
|
assert(allowComunicEmails != null),
|
2020-04-27 13:27:37 +02:00
|
|
|
assert(publicFriendsList != null),
|
|
|
|
assert(virtualDirectory != null),
|
2020-04-27 13:27:59 +02:00
|
|
|
assert(personalWebsite != null),
|
2020-04-27 13:27:37 +02:00
|
|
|
assert(publicNote != null);
|
|
|
|
}
|