copy method
Implementation
ArrowConfig copy({
Widget? arrow,
dynamic icon,
double? size,
Color? color,
}) {
return ArrowConfig(
arrow: arrow ?? this.arrow,
icon: icon ?? this.icon,
color: color ?? this.color,
size: size ?? this.size,
);
}