AccountQuery constructor
AccountQuery({
- ContinuationToken? continuation,
- StringValue? userIdWithAccess,
- StringValue? displayName,
- StringValue? name,
- StringValue? email,
- PhoneNumber? phoneNumber,
Implementation
factory AccountQuery({
$3.ContinuationToken? continuation,
$1.StringValue? userIdWithAccess,
$1.StringValue? displayName,
$1.StringValue? name,
$1.StringValue? email,
$3.PhoneNumber? phoneNumber,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (userIdWithAccess != null) result.userIdWithAccess = userIdWithAccess;
if (displayName != null) result.displayName = displayName;
if (name != null) result.name = name;
if (email != null) result.email = email;
if (phoneNumber != null) result.phoneNumber = phoneNumber;
return result;
}