We should move from changeX() to setX() which is more intuitive. We can also add getters and setters so that we have both options when interacting with the plugin.
Example:
public get recurring() { ... };
public set recurring(value: boolean) { ... };
public setRecurring(value: boolean) { ... };
We should move from
changeX()tosetX()which is more intuitive. We can also add getters and setters so that we have both options when interacting with the plugin.Example: