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.

19 lines
384B

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