GoogleCloudIdentitytoolkitV1SqlExpression.fromJson constructor

GoogleCloudIdentitytoolkitV1SqlExpression.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitV1SqlExpression.fromJson(core.Map json_)
    : this(
        email:
            json_.containsKey('email') ? json_['email'] as core.String : null,
        phoneNumber: json_.containsKey('phoneNumber')
            ? json_['phoneNumber'] as core.String
            : null,
        userId: json_.containsKey('userId')
            ? json_['userId'] as core.String
            : null,
      );