copyWith method

GroupCallStreams copyWith({
  1. List<GroupCallStream>? streams,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

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