ReadStatus constructor Null safety

ReadStatus(
  1. {required String userId,
  2. required int timestamp,
  3. required String channelUrl,
  4. required ChannelType channelType}
)

Implementation

ReadStatus({
  required this.userId,
  required this.timestamp,
  required this.channelUrl,
  required this.channelType,
});