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.

21 lines
429B

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