copyWith method
Implementation
ActiveOverlayOptions copyWith({
bool? showOutline,
Color? outlineColor,
double? outlineWidth,
}) {
return ActiveOverlayOptions(
showOutline: showOutline ?? this.showOutline,
outlineColor: outlineColor ?? this.outlineColor,
outlineWidth: outlineWidth ?? this.outlineWidth,
);
}