createEnvFile function

void createEnvFile(
  1. String projectName,
  2. String host,
  3. int port,
  4. String oydaBase,
  5. String user,
  6. String password,
  7. int devKey,
)

Implementation

void createEnvFile(String projectName, String host, int port, String oydaBase,
    String user, String password, int devKey) {
  createFile('$projectName/.env',
      envContent(host, port, oydaBase, user, password, devKey));
}