save method

void save()

Implementation

void save() {
  String text = json.encode(configMap);
  _file.writeAsStringSync(text);
}