LoginModel constructor

LoginModel({
  1. String? email,
  2. String? phone,
  3. required String password,
})

Implementation

LoginModel({this.email, this.phone, required this.password});