ThreeLeggedOAuth.fromJson constructor
ThreeLeggedOAuth.fromJson(
- Map json_
Implementation
ThreeLeggedOAuth.fromJson(core.Map json_)
: this(
authorizationUrl: json_['authorizationUrl'] as core.String?,
clientId: json_['clientId'] as core.String?,
clientSecret: json_['clientSecret'] as core.String?,
defaultContinueUri: json_['defaultContinueUri'] as core.String?,
enablePkce: json_['enablePkce'] as core.bool?,
redirectUrl: json_['redirectUrl'] as core.String?,
tokenUrl: json_['tokenUrl'] as core.String?,
);