OAuth2Config.fromJson constructor

OAuth2Config.fromJson(
  1. Map json_
)

Implementation

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