Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
elearning_state.dart
Go to the documentation of this file.
1part of 'elearning_cubit.dart';
2
3sealed class ElearningState extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
10final class ElearningInitial extends ElearningState {}
11
12final class LoadingVideosState extends ElearningState {}
13
14final class VideosLoadingFailureState extends ElearningState {
16 const VideosLoadingFailureState({required this.failure});
17}
18
19final class VideosLoadedState extends ElearningState {
20 final List<VideoEntity> videos;
21 const VideosLoadedState({required this.videos});
22}
static AppLocalizations of(BuildContext context)
final List< VideoEntity > videos
const VideosLoadedState({required this.videos})
const ElearningState()
override List< Object?> get props
Definition failures.dart:14
sealed class DocumentState extends Equatable failure
const VideosLoadingFailureState({required this.failure})