copyWith method
Implementation
@override
void copyWith(dynamic others) {
super.copyWith(others);
if (others is OpenChannel) {
participantCount = others.participantCount;
operators = List<User>.from(others.operators);
entered = others.entered;
}
}