TikTokLoginResult constructor

TikTokLoginResult({
  1. required TikTokLoginStatus status,
  2. String? authCode,
  3. String? state,
  4. String? codeVerifier,
  5. String? errorCode,
  6. String? errorMessage,
})

Implementation

TikTokLoginResult({
  required this.status,
  this.authCode,
  this.state,
  this.codeVerifier,
  this.errorCode,
  this.errorMessage,
});