triggerHotReload method

void triggerHotReload()

Sends the instant hot reload signal to the flutter engine via JS.

Implementation

void triggerHotReload() {
  _broadcast({
    'type': 'hot_reload',
    'timestamp': DateTime.now().millisecondsSinceEpoch,
  });
}