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