You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
266B

  1. part of 'media_helper_bloc.dart';
  2. abstract class MediaHelperEvent {
  3. const MediaHelperEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class ChangeListMedia extends MediaHelperEvent {
  8. final List<Media> items;
  9. ChangeListMedia({@required this.items});
  10. }