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.
|
- part of 'plot_bloc.dart';
-
- abstract class PlotEvent extends Equatable {
- const PlotEvent();
-
- @override
- List<Object> get props => [];
- }
-
- class DataFetched extends PlotEvent {}
-
- class OnRefresh extends PlotEvent {}
|