merge method

Implementation

SkeletonAvatarStyle merge(SkeletonAvatarStyle? other) {
  return copyWith(
    width: other?.width,
    height: other?.height,
    padding: other?.padding,
    randomHeight: other?.randomHeight,
    randomWidth: other?.randomWidth,
    minHeight: other?.minHeight,
    minWidth: other?.minWidth,
    maxHeight: other?.maxHeight,
    maxWidth: other?.maxWidth,
    shape: other?.shape,
    borderRadius: other?.borderRadius,
  );
}