copyWith method
Implementation
OverlayLayerOptions copyWith({
int? alpha,
FilterQuality? filterQuality,
int? zIndex,
bool? showActiveOutline,
Color? activeOutlineColor,
double? activeOutlineWidth,
}) {
return OverlayLayerOptions(
alpha: alpha ?? this.alpha,
filterQuality: filterQuality ?? this.filterQuality,
zIndex: zIndex ?? this.zIndex,
showActiveOutline: showActiveOutline ?? this.showActiveOutline,
activeOutlineColor: activeOutlineColor ?? this.activeOutlineColor,
activeOutlineWidth: activeOutlineWidth ?? this.activeOutlineWidth,
);
}