merge method

Implementation

SkeletonParagraphStyle merge(SkeletonParagraphStyle? other) {
  return copyWith(
    lines: other?.lines,
    padding: other?.padding,
    lineStyle: other?.lineStyle,
    spacing: other?.spacing,
  );
}