merge method

Merges this StreamPollOptionsDialogThemeData with the other.

Implementation

StreamAudioWaveformThemeData merge(
  StreamAudioWaveformThemeData? other,
) {
  if (other == null) return this;
  return copyWith(
    color: other.color,
    progressColor: other.progressColor,
    minBarHeight: other.minBarHeight,
    spacingRatio: other.spacingRatio,
    heightScale: other.heightScale,
  );
}