AccountProfileRequest constructor

AccountProfileRequest({
  1. AccountId? requestingAccountId,
  2. AccountId? profileAccountId,
})

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;
}