Separate hot reload and hot restart capabilities. (#24122)
diff --git a/packages/flutter_tools/lib/src/device.dart b/packages/flutter_tools/lib/src/device.dart
index 8225f4f..3c6d378 100644
--- a/packages/flutter_tools/lib/src/device.dart
+++ b/packages/flutter_tools/lib/src/device.dart
@@ -270,8 +270,11 @@
bool ipv6 = false,
});
- /// Does this device implement support for hot reloading / restarting?
- bool get supportsHotMode => true;
+ /// Whether this device implements support for hot reload.
+ bool get supportsHotReload => true;
+
+ /// Whether this device implements support for hot restart.
+ bool get supportsHotRestart => true;
/// Stop an app package on the current device.
Future<bool> stopApp(ApplicationPackage app);