copySshKeyCommand method
Implementation
@override
List<String> copySshKeyCommand({
required String filePath,
required bool ipv6,
required String targetDevice,
}) {
return [
'ssh-copy-id',
if (ipv6) '-6',
'-f',
'-i',
filePath,
targetDevice,
];
}