BackendServiceIAP.fromJson constructor

BackendServiceIAP.fromJson(
  1. Map json_
)

Implementation

BackendServiceIAP.fromJson(core.Map json_)
  : this(
      enabled: json_['enabled'] as core.bool?,
      oauth2ClientId: json_['oauth2ClientId'] as core.String?,
      oauth2ClientSecret: json_['oauth2ClientSecret'] as core.String?,
      oauth2ClientSecretSha256:
          json_['oauth2ClientSecretSha256'] as core.String?,
    );