ChannelParticipant constructor

const ChannelParticipant({
  1. required int userId,
  2. required DateTime date,
})

Channel Participant constructor.

Implementation

const ChannelParticipant({
  required this.userId,
  required this.date,
}) : super._();