GroupData constructor

GroupData({
  1. UserPermission? userPermission,
  2. String? userName,
  3. bool? onlineStatus,
  4. String? groupName,
  5. bool? isGroup,
  6. String? imagePath,
  7. String? opponentUserId,
})

Implementation

GroupData({
  this.userPermission,
  this.userName,
  this.onlineStatus,
  this.groupName,
  this.isGroup,
  this.imagePath,
  this.opponentUserId
});