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.

18 lines
328B

  1. part of 'plot_bloc.dart';
  2. abstract class PlotEvent extends Equatable {
  3. const PlotEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class DataFetched extends PlotEvent {}
  8. class OnRefresh extends PlotEvent {}
  9. class OnSearch extends PlotEvent {
  10. final String searchString;
  11. OnSearch({@required this.searchString});
  12. }