HashClientIdResponse.fromJson constructor

HashClientIdResponse.fromJson(
  1. Map json_
)

Implementation

HashClientIdResponse.fromJson(core.Map json_)
    : this(
        clientId: json_['clientId'] as core.String?,
        hashedClientId: json_['hashedClientId'] as core.String?,
        kind: json_['kind'] as core.String?,
        webPropertyId: json_['webPropertyId'] as core.String?,
      );