merge method

Implementation

SkeletonListTileStyle merge(SkeletonListTileStyle? other) {
  return copyWith(
    hasLeading: other?.hasLeading,
    leadingStyle:
        leadingStyle?.merge(other?.leadingStyle) ?? other?.leadingStyle,
    titleStyle: other?.titleStyle,
    hasSubtitle: other?.hasSubtitle,
    subtitleStyle:
        subtitleStyle?.merge(other?.subtitleStyle) ?? other?.subtitleStyle,
    padding: other?.padding,
    contentSpacing: other?.contentSpacing,
    verticalSpacing: other?.verticalSpacing,
  );
}