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 ForgotPassword extends Usecase<Future<void>, String> {
8 : final AuthenticationService service;
9 :
10 0 : const ForgotPassword(this.service);
11 :
12 0 : @override
13 : Future<void> call(String email) {
14 0 : return service.forgotPassword(email);
15 : }
16 : }
|