| LCOV - code coverage report | ||||||||||||||||||||||
        
  | 
    ||||||||||||||||||||||
Line data Source code 1 : import 'package:redux/redux.dart'; 2 : 3 : import '../../../types.dart'; 4 : import '../../auth/actions/sign_out_action.dart'; 5 : 6 : class SignOutReducer<T extends RedFireState> 7 : extends TypedReducer<T, SignOutAction> { 8 0 : SignOutReducer() 9 0 : : super( 10 0 : (state, action) => (state as dynamic).copyWith(profile: null) as T); 11 : }  | 
    
| Generated by: LCOV version 1.13 |