GoogleCloudIdentitytoolkitV1FederatedUserIdentifier.fromJson constructor

GoogleCloudIdentitytoolkitV1FederatedUserIdentifier.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitV1FederatedUserIdentifier.fromJson(core.Map json_)
    : this(
        providerId: json_.containsKey('providerId')
            ? json_['providerId'] as core.String
            : null,
        rawId:
            json_.containsKey('rawId') ? json_['rawId'] as core.String : null,
      );