StartOAuthResponse.fromJson constructor

StartOAuthResponse.fromJson(
  1. Map json_
)

Implementation

StartOAuthResponse.fromJson(core.Map json_)
  : this(
      authUri: json_['authUri'] as core.String?,
      clientId: json_['clientId'] as core.String?,
      codeChallenge: json_['codeChallenge'] as core.String?,
      codeChallengeMethod: json_['codeChallengeMethod'] as core.String?,
      scopes: (json_['scopes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      systemProviderId: json_['systemProviderId'] as core.String?,
      ticket: json_['ticket'] as core.String?,
    );