1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/models/new_conversation.dart

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