@munirkamal There is no need to define a save point unless you want to save to a custom location. From the acf local json documentation:
Getting started
To start using the local JSON feature, simply create a new folder in your theme and name it acf-json. This folder must have permissions for the server to read and write (in most cases 755 will work well).
Once this folder exists, each time you save a field group a JSON file will be created (or updated) with the field group and field settings. The JSON file will be named using the field group’s unique key.
Now that the JSON file exists, ACF will load the relevant field group and field settings from this file which reduces the number of database calls during your page load!
As you can see from the documentation there is no need to define a save point. All you need to do is create the dir “acf-json” in the theme root and ACF will automatically save to that directory there is no further code needed to make this work, but yes it does go on to explain how to create a custom save point if you do not want to use the default acf-json directory as the default.
Try it for yourself. Install a theme with ACF Pro and create the directory “acf-json” and create a custom field group. You will see that ACF does not need a save point defined and the group json will be added to the dir “acf-json”. Make sure your plugin in not installed first though.
Having your code defining the save point in your plugin now forces the theme developer to add their own save point code. I would think you would want to make this clear in your documentation that if you would like to use your plugin and use acf local json in your theme that you need define your save point.