SshCommand constructor
SshCommand({
- required FlutterSdkManager flutterSdkManager,
Implementation
SshCommand({
required super.flutterSdkManager,
}) {
// Create an SSH connection to the remote device
addSubcommand(
CreateConnectionCommand(flutterSdkManager: flutterSdkManager),
);
// Test an SSH connection to the remote device
addSubcommand(
TestConnectionCommand(flutterSdkManager: flutterSdkManager),
);
}