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.

23 lines
529B

  1. part of 'common_data_bloc.dart';
  2. abstract class CommonDataEvent extends Equatable {
  3. const CommonDataEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class DataFetched extends CommonDataEvent {
  8. final int selectedId;
  9. final String tbSupply;
  10. final String condition;
  11. DataFetched({this.selectedId, this.tbSupply, this.condition});
  12. }
  13. class OnRefresh extends CommonDataEvent {
  14. final int selectedId;
  15. final String tbSupply;
  16. final String condition;
  17. OnRefresh({this.selectedId, this.tbSupply, this.condition});
  18. }