copyWith method

ActiveOverlayOptions copyWith({
  1. bool? showOutline,
  2. Color? outlineColor,
  3. double? outlineWidth,
})

Implementation

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