copyWith method

ChatStatisticsInviterInfo copyWith({
  1. int? userId,
  2. int? addedMemberCount,
})

Implementation

ChatStatisticsInviterInfo copyWith({
  int? userId,
  int? addedMemberCount,
}) =>
    ChatStatisticsInviterInfo(
      userId: userId ?? this.userId,
      addedMemberCount: addedMemberCount ?? this.addedMemberCount,
    );