copyWith method
Implementation
GroupCallStreams copyWith({
List<GroupCallStream>? streams,
dynamic extra,
int? clientId,
}) =>
GroupCallStreams(
streams: streams ?? this.streams,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);