UnreadItemCount constructor Null safety

UnreadItemCount(
  1. {int? groupChannelInvitationCount,
  2. int? groupChannelUnreadMentionCount,
  3. int? groupChannelUnreadMessageCount,
  4. int? superGroupChannelInvitationCount,
  5. int? superGroupChannelUnreadMentionCount,
  6. int? superGroupChannelUnreadMessageCount,
  7. int? nonSuperGroupChannelInvitationCount,
  8. int? nonSuperGroupChannelUnreadMentionCount,
  9. int? nonSuperGroupChannelUnreadMessageCount}
)

Implementation

UnreadItemCount({
  this.groupChannelInvitationCount,
  this.groupChannelUnreadMentionCount,
  this.groupChannelUnreadMessageCount,
  this.superGroupChannelInvitationCount,
  this.superGroupChannelUnreadMentionCount,
  this.superGroupChannelUnreadMessageCount,
  this.nonSuperGroupChannelInvitationCount,
  this.nonSuperGroupChannelUnreadMentionCount,
  this.nonSuperGroupChannelUnreadMessageCount,
});