PreprocessingConfig_Audio constructor

PreprocessingConfig_Audio({
  1. double? lufs,
  2. bool? highBoost,
  3. bool? lowBoost,
})

Implementation

factory PreprocessingConfig_Audio({
  $core.double? lufs,
  $core.bool? highBoost,
  $core.bool? lowBoost,
}) {
  final $result = create();
  if (lufs != null) {
    $result.lufs = lufs;
  }
  if (highBoost != null) {
    $result.highBoost = highBoost;
  }
  if (lowBoost != null) {
    $result.lowBoost = lowBoost;
  }
  return $result;
}