FeedId constructor

FeedId({
  1. String? target,
  2. AccountId? accountId,
})

Implementation

factory FeedId({
  $core.String? target,
  AccountId? accountId,
}) {
  final result = create();
  if (target != null) result.target = target;
  if (accountId != null) result.accountId = accountId;
  return result;
}