copyWith method
Implementation
StrokesConfig copyWith({
final Color? color,
final double? width,
final bool? inner,
final bool? outer,
}) => StrokesConfig(
color: color ?? this.color,
width: width ?? this.width,
inner: inner ?? this.inner,
outer: outer ?? this.outer,
);