AccountProfileRequest constructor
Implementation
factory AccountProfileRequest({
$0.AccountId? requestingAccountId,
$0.AccountId? profileAccountId,
}) {
final result = create();
if (requestingAccountId != null)
result.requestingAccountId = requestingAccountId;
if (profileAccountId != null) result.profileAccountId = profileAccountId;
return result;
}