merge method

Implementation

SkeletonLineStyle merge(SkeletonLineStyle? other) {
  return copyWith(
    width: other?.width,
    height: other?.height,
    padding: other?.padding,
    alignment: other?.alignment,
    randomLength: other?.randomLength,
    minLength: other?.minLength,
    maxLength: other?.maxLength,
    borderRadius: other?.borderRadius,
  );
}