TimelineService class

Constructors

TimelineService({required AbstractTwitterClient client})
const

Properties

client AbstractTwitterClient
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

homeTimeline({int? count, String? sinceId, String? maxId, bool? trimUser, bool? excludeReplies, bool? includeEntities, bool? includeExtEditControl, String tweetMode = 'extended', TransformResponse<List<Tweet>> transform = defaultTweetListTransform}) Future<List<Tweet>>
Returns a collection of the most recent Tweets and Retweets posted by the authenticating user and the users they follow. The home timeline is central to how most users interact with the Twitter service.
mentionsTimeline({int? count, String? sinceId, String? maxId, bool? trimUser, bool? includeEntities, bool? includeExtEditControl, String tweetMode = 'extended', TransformResponse<List<Tweet>> transform = defaultTweetListTransform}) Future<List<Tweet>>
Returns the 20 most recent mentions (Tweets containing a users' @screen_name) for the authenticating user.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
userTimeline({String? userId, String? screenName, int? count, String? sinceId, String? maxId, bool? trimUser, bool? excludeReplies, bool? includeRts, bool? includeExtEditControl, String tweetMode = 'extended', TransformResponse<List<Tweet>> transform = defaultTweetListTransform}) Future<List<Tweet>>
Returns a collection of the most recent Tweets posted by the user indicated by the screenName or userId parameters.

Operators

operator ==(Object other) bool
The equality operator.
inherited