InternalLinkTypeAuthenticationCode constructor

const InternalLinkTypeAuthenticationCode({
  1. required String code,
  2. dynamic extra,
  3. int? clientId,
})

The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode

Implementation

const InternalLinkTypeAuthenticationCode({
  required this.code,
  this.extra,
  this.clientId,
});