LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import 'package:app_pym/core/usecases/usecase.dart'; 2 : import 'package:app_pym/data/services/authentication_service.dart'; 3 : import 'package:injectable/injectable.dart'; 4 : 5 : @prod 6 : @lazySingleton 7 : class AuthSignOut extends Usecase<void, NoParams> { 8 : final AuthenticationService service; 9 : 10 0 : const AuthSignOut(this.service); 11 : 12 0 : @override 13 : void call(NoParams noParams) { 14 0 : return service.signOut(); 15 : } 16 : } |
![]() |
Generated by: LCOV version 1.13 |