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,
      );