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