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.

20 lines
392B

  1. part of 'action_detail_bloc.dart';
  2. abstract class ActionDetailEvent {
  3. const ActionDetailEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class FetchData extends ActionDetailEvent {
  8. final bool isNeedFetchData;
  9. final String apiActivity;
  10. final int activityId;
  11. FetchData({
  12. required this.isNeedFetchData,
  13. required this.apiActivity,
  14. required this.activityId,
  15. });
  16. }