part of 'file_list_load_bloc.dart'; abstract class FileListLoadEvent extends Equatable { const FileListLoadEvent(); } class FileListLoadPathEvent extends FileListLoadEvent { final repoName; final path; const FileListLoadPathEvent(this.path, this.repoName); @override List get props => [path,repoName]; }