FollowQuery constructor
FollowQuery({
- ContinuationToken? continuation,
- AccountId? accountId,
- 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;
}