copyWith method
Implementation
UISkeletonPlaceholder copyWith({
Key? key,
double? width,
double? height,
Color? color,
double? borderRadius,
Color? baseColor,
Color? highlightColor,
}) {
return UISkeletonPlaceholder(
key: key ?? this.key,
width: width ?? this.width,
height: height ?? this.height,
color: color ?? this.color,
borderRadius: borderRadius ?? this.borderRadius,
baseColor: baseColor ?? this.baseColor,
highlightColor: highlightColor ?? this.highlightColor,
);
}