copyWith method
Implementation
DragBeginData copyWith({
ScreenPoint? point,
RenderedObject? item
}) {
return DragBeginData(
point: point ?? this.point,
item: item ?? this.item
);
}
DragBeginData copyWith({
ScreenPoint? point,
RenderedObject? item
}) {
return DragBeginData(
point: point ?? this.point,
item: item ?? this.item
);
}