copyWith method
Implementation
AnySide copyWith({
double? width,
double? align,
Color? color,
Gradient? gradient,
DecorationImage? image,
BlendMode? blendMode,
bool? isAntiAlias,
}) {
return AnySide(
width: width ?? this.width,
align: align ?? this.align,
color: color ?? this.color,
gradient: gradient ?? this.gradient,
image: image ?? this.image,
blendMode: blendMode ?? this.blendMode,
isAntiAlias: isAntiAlias ?? this.isAntiAlias,
);
}