copyWith method
Implementation
ScreenShift copyWith({
double? dx,
double? dy
}) {
return ScreenShift(
dx: dx ?? this.dx,
dy: dy ?? this.dy
);
}
ScreenShift copyWith({
double? dx,
double? dy
}) {
return ScreenShift(
dx: dx ?? this.dx,
dy: dy ?? this.dy
);
}