create method

void create()

Implementation

void create() {
  var configContent = '''
// Define cont values to configure the game
// Ej: const blockColor = Color (0xfff94144);

''';
  var configFile = File('$name/lib/src/config.dart');

  configFile.createSync(recursive: true);
  configFile.writeAsStringSync(configContent);
}