1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-07-13 05:18:05 +00:00
Files
comunicmobile/lib/models/new_conversation.dart
2022-03-10 20:36:55 +01:00

23 lines
474 B
Dart

import 'package:flutter/cupertino.dart';
/// New conversation information
///
/// @author Pierre Hubert
class NewConversation {
final String name;
final List<int?> members;
final bool follow;
final bool canEveryoneAddMembers;
final Color? color;
const NewConversation({
required this.name,
required this.members,
required this.follow,
required this.canEveryoneAddMembers,
required this.color,
}) :
assert(members.length > 0);
}