createConfigTomlIfNotExists function

void createConfigTomlIfNotExists({
  1. String filepath = 'config.toml',
})

Implementation

void createConfigTomlIfNotExists({String filepath = 'config.toml'}) {
  File configFile = File(filepath);
  if (!configFile.existsSync()) {
    configFile.createSync();
  }
}