All checks were successful
ci/woodpecker/push/flutterBuild Pipeline was successful
15 lines
No EOL
498 B
Dart
15 lines
No EOL
498 B
Dart
part of 'file_list_load_bloc.dart';
|
|
|
|
enum FileLoadStatus { loading, success,failure }
|
|
|
|
class FileListLoadState extends Equatable {
|
|
const FileListLoadState({this.path="", this.repoFullname ="", this.error_message = null, this.files= const <RepoFile>[],this.status = FileLoadStatus.loading});
|
|
final FileLoadStatus status;
|
|
final String path;
|
|
final String repoFullname;
|
|
final String? error_message;
|
|
final List<RepoFile> files;
|
|
|
|
@override
|
|
List<Object> get props => [path,repoFullname];
|
|
} |