mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
28 lines
692 B
Dart
28 lines
692 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
/// Conversation settings update
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class NewConversationsSettings {
|
|
final int convID;
|
|
final bool following;
|
|
final bool isComplete;
|
|
final String name;
|
|
final bool? canEveryoneAddMembers;
|
|
final Color? color;
|
|
|
|
const NewConversationsSettings({
|
|
required this.convID,
|
|
required this.following,
|
|
required this.isComplete,
|
|
required this.name,
|
|
required this.canEveryoneAddMembers,
|
|
required this.color,
|
|
}) : assert(convID != null),
|
|
assert(convID > 0),
|
|
assert(following != null),
|
|
assert(isComplete != null),
|
|
assert(!isComplete || canEveryoneAddMembers != null);
|
|
}
|