FollowQuery constructor

FollowQuery({
  1. ContinuationToken? continuation,
  2. AccountId? accountId,
  3. FollowQuery_FollowType? type,
})

Implementation

factory FollowQuery({
  $3.ContinuationToken? continuation,
  $0.AccountId? accountId,
  FollowQuery_FollowType? type,
}) {
  final result = create();
  if (continuation != null) result.continuation = continuation;
  if (accountId != null) result.accountId = accountId;
  if (type != null) result.type = type;
  return result;
}