addSshKeyToAgent method

List<String> addSshKeyToAgent({
  1. required String filePath,
})

Implementation

List<String> addSshKeyToAgent({required String filePath}) => commandRunner([
      'ssh-add',
      filePath,
    ]);