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