9 lines
228 B
Dart
9 lines
228 B
Dart
|
|
part of 'summary_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class SummaryEvent with _$SummaryEvent {
|
||
|
|
const factory SummaryEvent.started() = _Started;
|
||
|
|
const factory SummaryEvent.getSummary(String startDate, String endDate) =
|
||
|
|
_GetSummary;
|
||
|
|
}
|