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

11 lines
206 B
Dart

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