findFlutterPathInteractive method

Future<String?> findFlutterPathInteractive(
  1. String username,
  2. InternetAddress ip, {
  3. 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,
    );