copyWith method

BackupVideoCodec copyWith({
  1. bool? enabled,
  2. String? codec,
  3. VideoEncoding? encoding,
  4. bool? simulcast,
})

Implementation

BackupVideoCodec copyWith({
  bool? enabled,
  String? codec,
  VideoEncoding? encoding,
  bool? simulcast,
}) {
  return BackupVideoCodec(
    enabled: enabled ?? this.enabled,
    codec: codec ?? this.codec,
    encoding: encoding ?? this.encoding,
    simulcast: simulcast ?? this.simulcast,
  );
}