Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
signin_request_entity.dart
Go to the documentation of this file.
1import 'package:equatable/equatable.dart';
2
3class SignInRequestEntity extends Equatable {
4 final String email;
5 final String password;
7 required this.email,
8 required this.password,
9 });
10
11 @override
12 List<Object?> get props => [email, password];
13}
const SignInRequestEntity({ required this.email, required this.password, })
class Partner String
String get(String locale)
abstract class UseCase< Type, Params > props