LoginStatus constructor

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

Implementation

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