GroupInfoDTO constructor
GroupInfoDTO({
- required String groupName,
- String? groupImage,
- required String groupDescription,
- required bool isPublic,
- required String groupCreator,
- required String chatId,
- DateTime? scheduleAt,
- DateTime? scheduleEnd,
- String? groupType,
- ChatStatus? status,
- dynamic rules,
- String? meta,
- String? sessionKey,
- String? encryptedSecret,
Implementation
GroupInfoDTO({
required this.groupName,
this.groupImage,
required this.groupDescription,
required this.isPublic,
required this.groupCreator,
required this.chatId,
this.scheduleAt,
this.scheduleEnd,
this.groupType,
this.status,
this.rules,
this.meta,
this.sessionKey,
this.encryptedSecret,
});