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.

15 lines
322B

  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 int activityId;
  10. FetchData({@required this.isNeedFetchData, @required this.activityId});
  11. }