Skip to content

Commit

Permalink
Remove unnecessary InitialPresentationEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Mamak committed Oct 3, 2023
1 parent dec364e commit f340806
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/bloc_presentation_test/test/cubits/events.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ sealed class CounterPresentationEvent extends Equatable {
final int number;
}

final class InitialPresentationEvent extends CounterPresentationEvent {
const InitialPresentationEvent(super.number);

@override
List<Object?> get props => [number];
}

final class IncrementPresentationEvent extends CounterPresentationEvent {
const IncrementPresentationEvent(super.number);

Expand Down

0 comments on commit f340806

Please sign in to comment.