OAuth2.fromJson constructor

OAuth2.fromJson(
  1. Map json_
)

Implementation

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