FollowRequest constructor

FollowRequest({
  1. AccountId? source,
  2. AccountId? target,
})

Implementation

factory FollowRequest({
  $0.AccountId? source,
  $0.AccountId? target,
}) {
  final result = create();
  if (source != null) result.source = source;
  if (target != null) result.target = target;
  return result;
}