$Oauth2AuthCodeFlowGoogleManaged.fromJson constructor
$Oauth2AuthCodeFlowGoogleManaged.fromJson(
- Map json_
Implementation
$Oauth2AuthCodeFlowGoogleManaged.fromJson(core.Map json_)
: this(
authCode: json_['authCode'] as core.String?,
redirectUri: json_['redirectUri'] as core.String?,
scopes: (json_['scopes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);