GetAuthStatusResponse constructor

const GetAuthStatusResponse({
  1. required bool isAuthenticated,
  2. String? authType,
  3. String? host,
  4. String? login,
  5. String? statusMessage,
})

Implementation

const GetAuthStatusResponse({
  required this.isAuthenticated,
  this.authType,
  this.host,
  this.login,
  this.statusMessage,
});