copyWith method
Implementation
CameraViewPoint copyWith({
double? x,
double? y
}) {
return CameraViewPoint(
x: x ?? this.x,
y: y ?? this.y
);
}
CameraViewPoint copyWith({
double? x,
double? y
}) {
return CameraViewPoint(
x: x ?? this.x,
y: y ?? this.y
);
}