EmailAuth constructor

EmailAuth({
  1. int? id,
  2. required int userId,
  3. required String email,
  4. required String hash,
})

Implementation

EmailAuth({
  int? id,
  required this.userId,
  required this.email,
  required this.hash,
}) : super(id);