LoginStatus constructor

LoginStatus({
  1. required int status,
  2. required String statusVerbose,
  3. String? userEmail,
  4. String? userName,
  5. String? userId,
})

Implementation

LoginStatus({
  required this.status,
  required this.statusVerbose,
  this.userEmail,
  this.userName,
  this.userId,
});