copyWith method

GroupCallParticipantVideoInfo copyWith({
  1. List<GroupCallVideoSourceGroup>? sourceGroups,
  2. String? endpointId,
  3. bool? isPaused,
})

Implementation

GroupCallParticipantVideoInfo copyWith({
  List<GroupCallVideoSourceGroup>? sourceGroups,
  String? endpointId,
  bool? isPaused,
}) =>
    GroupCallParticipantVideoInfo(
      sourceGroups: sourceGroups ?? this.sourceGroups,
      endpointId: endpointId ?? this.endpointId,
      isPaused: isPaused ?? this.isPaused,
    );