LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import 'package:redux/redux.dart'; 2 : 3 : import '../../../types.dart'; 4 : import '../actions/email/set_providers_for_email_action.dart'; 5 : 6 : class SetProvidersForEmailReducer<T extends RedFireState> 7 : extends TypedReducer<T, SetProvidersForEmailAction> { 8 1 : SetProvidersForEmailReducer() 9 2 : : super((state, action) { 10 : return (state as dynamic) 11 1 : .copyWith 12 1 : .auth 13 2 : .emailVM(providers: action.providers) as T; 14 : }); 15 : } |
![]() |
Generated by: LCOV version 1.13 |