copyConnection function

bool copyConnection({
  1. required String projectPath,
  2. required String servicePath,
})

Implementation

bool copyConnection({
  required String projectPath,
  required String servicePath,
}) {
  File(servicePath + '/lib/src/connection.dart').writeAsStringSync(
    File(projectPath + '/lib/src/connection.dart').readAsStringSync(),
  );
  return true;
}