copyWith method

AudioBridgeParticipants copyWith({
  1. int? id,
  2. String? display,
  3. bool? setup,
  4. bool? muted,
  5. bool? talking,
  6. int? spatialPosition,
})

Implementation

AudioBridgeParticipants copyWith({
  int? id,
  String? display,
  bool? setup,
  bool? muted,
  bool? talking,
  int? spatialPosition,
}) {
  return AudioBridgeParticipants(
    id: id ?? this.id,
    display: display ?? this.display,
    setup: setup ?? this.setup,
    muted: muted ?? this.muted,
    talking: talking ?? this.talking,
    spatialPosition: spatialPosition ?? this.spatialPosition,
  );
}