Skip to content

Commit

Permalink
Merge pull request #23 from ChangeFinance/cleanup
Browse files Browse the repository at this point in the history
Format code
  • Loading branch information
ikakus authored Nov 24, 2022
2 parents bfa3c92 + 3c68f04 commit 9d3ab80
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/src/element/elements.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ import 'package:rxdart/rxdart.dart';

import '../utils/disposable.dart';

abstract class FeatureState{
abstract class FeatureState {
const FeatureState();
}


abstract class FeatureAction{
abstract class FeatureAction {
const FeatureAction();
}

Expand All @@ -26,7 +25,7 @@ abstract class Reducer<S extends FeatureState, Effect> {
///
/// Used for SingleLiveEvent like effects.
/// Producing sideEffect is optional state/effect/action.
abstract class SideEffectProducer< Effect, SideEffect> {
abstract class SideEffectProducer<Effect, SideEffect> {
SideEffect? invoke(Effect effect);
}

Expand Down

0 comments on commit 9d3ab80

Please sign in to comment.