update method
void
update({})
Implementation
void update({
double? rotationX,
double? rotationY,
double? rotationZ,
double? zoom,
Vector3? position,
Vector3? viewDirection,
}) {
this.rotationX = rotationX ?? this.rotationX;
this.rotationY = rotationY ?? this.rotationY;
this.rotationZ = rotationZ ?? this.rotationZ;
this.zoom = zoom ?? this.zoom;
this.position = position ?? this.position;
notifyListeners();
}