copyWith method
HoverTooltip
copyWith({
- int? pos,
- int? end,
- TooltipView create(
- BuildContext context
- bool? above,
- bool? strictSide,
- bool? arrow,
- bool? clip,
Create a copy with modified values.
Implementation
HoverTooltip copyWith({
int? pos,
int? end,
TooltipView Function(BuildContext context)? create,
bool? above,
bool? strictSide,
bool? arrow,
bool? clip,
}) {
return HoverTooltip(
pos: pos ?? this.pos,
end: end ?? this.end,
create: create ?? this.create,
above: above ?? this.above,
strictSide: strictSide ?? this.strictSide,
arrow: arrow ?? this.arrow,
clip: clip ?? this.clip,
);
}