LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import 'package:redux/redux.dart'; 2 : 3 : import '../../../types.dart'; 4 : 5 : extension ReducersListExtension<T extends RedFireState> on List<Reducer<T>> { 6 : /// Takes a list of [Reducer] and create a single reducer that applies all 7 : /// reducers in the list, using a [List.fold]. 8 2 : Reducer<T> combine() => (state, dynamic action) => 9 3 : fold(state, (previousState, reducer) => reducer(previousState, action)); 10 : } |
![]() |
Generated by: LCOV version 1.13 |