OAuthConfig.fromJson constructor

OAuthConfig.fromJson(
  1. Map json_
)

Implementation

OAuthConfig.fromJson(core.Map json_)
  : this(
      clientId: json_['clientId'] as core.String?,
      clientSecret: json_['clientSecret'] as core.String?,
    );