findFlutterPathInteractive method
Future<String?>
findFlutterPathInteractive(
- String username,
- InternetAddress ip, {
- bool addHostToKnownHosts = true,
'find / -type f -name "flutter" -path "/flutter/bin/" 2>/dev/null',
Implementation
Future<String?> findFlutterPathInteractive(
String username,
InternetAddress ip, {
bool addHostToKnownHosts = true,
}) =>
findToolPathInteractive(
username: username,
ip: ip,
toolName: 'flutter',
toolPath: '*/flutter/bin/*',
addHostToKnownHosts: addHostToKnownHosts,
);