AuthorizationCodeResponse constructor

AuthorizationCodeResponse({
  1. String? code,
  2. String? state,
  3. LinkedInTokenObject? accessToken,
})

Implementation

AuthorizationCodeResponse({
  this.code,
  this.state,
  this.accessToken,
});