GroupInfoDTO constructor

GroupInfoDTO({
  1. required String groupName,
  2. String? groupImage,
  3. required String groupDescription,
  4. required bool isPublic,
  5. required String groupCreator,
  6. required String chatId,
  7. DateTime? scheduleAt,
  8. DateTime? scheduleEnd,
  9. String? groupType,
  10. ChatStatus? status,
  11. dynamic rules,
  12. String? meta,
  13. String? sessionKey,
  14. 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,
});