notube-export/lib/videoList/cubit/videos_state.dart

10 lines
176 B
Dart

part of 'videos_cubit.dart';
final class VideosState {
final List<Video> videoList;
VideosState({this.videoList = const []});
List<Object> get props => [videoList];
}