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.

13 lines
269B

  1. part of 'infinity_scroll_bloc.dart';
  2. abstract class InfinityScrollEvent extends Equatable {
  3. const InfinityScrollEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class DataFetched extends InfinityScrollEvent {}
  8. class OnRefresh extends InfinityScrollEvent {}