save method

Future<void> save()

Saves the current CsrConfig instance to a local file.

The data is serialized into JSON format and stored in a file named 'CsrConfig' using the saveToFile utility function.

Implementation

Future<void> save() async {
  _createCsrConfigFile();
}