CheckAuthorizationResponse.fromJson constructor
      
      CheckAuthorizationResponse.fromJson(
    
    
- Map json_
Implementation
CheckAuthorizationResponse.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      oauthUri: json_['oauth_uri'] as core.String?,
      success: json_['success'] as core.bool?,
    );