writeTo method
Stores the CompletionConfiguration in the given file
.
Implementation
void writeTo(File file) {
if (!file.existsSync()) {
file.createSync(recursive: true);
}
file.writeAsStringSync(_toJson());
}
Stores the CompletionConfiguration in the given file
.
void writeTo(File file) {
if (!file.existsSync()) {
file.createSync(recursive: true);
}
file.writeAsStringSync(_toJson());
}