watchFilesForChanges property

Stream watchFilesForChanges

Implementation

static Stream<dynamic> get watchFilesForChanges async* {
  await for (var event in _eventChannel.receiveBroadcastStream()) {
    yield event;
  }
}