listenFileChanges method
      
void
listenFileChanges()
      
     
    
    
Implementation
void listenFileChanges() {
  Directory(component.assetsPath).watch().listen((event) {
    if (event.path == faviconPath && File(faviconPath).existsSync()) {
      data = null;
      dataLoader = _loadIcon();
    }
  });
}