copyWith method

StrokesConfig copyWith({
  1. Color? color,
  2. double? width,
  3. bool? inner,
  4. bool? outer,
})

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,
);