GoogleCloudRecaptchaenterpriseV1TransactionDataUser.fromJson constructor
GoogleCloudRecaptchaenterpriseV1TransactionDataUser.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1TransactionDataUser.fromJson(core.Map json_)
: this(
accountId: json_.containsKey('accountId')
? json_['accountId'] as core.String
: null,
creationMs: json_.containsKey('creationMs')
? json_['creationMs'] as core.String
: null,
email:
json_.containsKey('email') ? json_['email'] as core.String : null,
emailVerified: json_.containsKey('emailVerified')
? json_['emailVerified'] as core.bool
: null,
phoneNumber: json_.containsKey('phoneNumber')
? json_['phoneNumber'] as core.String
: null,
phoneVerified: json_.containsKey('phoneVerified')
? json_['phoneVerified'] as core.bool
: null,
);