diff --git a/packages/flutter_tools/lib/src/commands/devices.dart b/packages/flutter_tools/lib/src/commands/devices.dart index 9a8bd992a65..3a6ebd6735b 100644 --- a/packages/flutter_tools/lib/src/commands/devices.dart +++ b/packages/flutter_tools/lib/src/commands/devices.dart @@ -31,7 +31,7 @@ class DevicesCommand extends FlutterCommand { for (Device device in devices) { String supportIndicator = device.isSupported() ? '' : '- unsupported'; - printStatus('${device.name} (${device.id}) ${supportIndicator}'); + printStatus('${device.name} (${device.id}) $supportIndicator'); } }