copyWith method

ToggleGroupCallIsMyVideoEnabled copyWith({
  1. int? groupCallId,
  2. bool? isMyVideoEnabled,
})

Implementation

ToggleGroupCallIsMyVideoEnabled copyWith({
  int? groupCallId,
  bool? isMyVideoEnabled,
}) => ToggleGroupCallIsMyVideoEnabled(
  groupCallId: groupCallId ?? this.groupCallId,
  isMyVideoEnabled: isMyVideoEnabled ?? this.isMyVideoEnabled,
);