tweetAuthor method

UserV2? tweetAuthor()

Implementation

UserV2? tweetAuthor() {
  final authorId = tweet.authorId;
  return tweetResponse.includes.users
      .firstWhereOrNull((user) => user.id == authorId);
}