All checks were successful
ci/woodpecker/push/flutterBuild Pipeline was successful
15 lines
No EOL
328 B
Dart
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];
|
|
|
|
} |