merge method

Implementation

ZeroProgressStyle merge(ZeroProgressStyle? other) {
  if (other == null) return this;

  return copyWith(
    valueColor: other.valueColor,
    backgroundColor: other.backgroundColor,
    lineSize: other.lineSize,
  );
}