GiteaClient/lib/cubit/file_list_load_event.dart
Balazs Toldi c272d8c888
All checks were successful
ci/woodpecker/push/flutterBuild Pipeline was successful
Better files list
2022-05-16 10:02:11 +02:00

15 lines
No EOL
328 B
Dart

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<Object?> get props => [path,repoName];
}