$FeedsClient class

Constructors

$FeedsClient($Client _rootClient)
Creates a new DynamiteClient for feeds requests.

Properties

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

Methods

$addFeed_Request({required String url, int? folderId}) → Request
Returns a DynamiteRequest backing the addFeed operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$addFeed_Serializer() → DynamiteSerializer<ListFeeds, void>
Builds a serializer to parse the response of $addFeed_Request.
$deleteFeed_Request({required int feedId}) → Request
Returns a DynamiteRequest backing the deleteFeed operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$deleteFeed_Serializer() → DynamiteSerializer<void, void>
Builds a serializer to parse the response of $deleteFeed_Request.
$listFeeds_Request() → Request
Returns a DynamiteRequest backing the listFeeds operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$listFeeds_Serializer() → DynamiteSerializer<ListFeeds, void>
Builds a serializer to parse the response of $listFeeds_Request.
$markFeedAsRead_Request({required int feedId, required int newestItemId}) → Request
Returns a DynamiteRequest backing the markFeedAsRead operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$markFeedAsRead_Serializer() → DynamiteSerializer<void, void>
Builds a serializer to parse the response of $markFeedAsRead_Request.
$moveFeed_Request({required int feedId, int? folderId}) → Request
Returns a DynamiteRequest backing the moveFeed operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$moveFeed_Serializer() → DynamiteSerializer<void, void>
Builds a serializer to parse the response of $moveFeed_Request.
$renameFeed_Request({required int feedId, required String feedTitle}) → Request
Returns a DynamiteRequest backing the renameFeed operation. Throws a DynamiteApiException if the API call does not return an expected status code.
$renameFeed_Serializer() → DynamiteSerializer<void, void>
Builds a serializer to parse the response of $renameFeed_Request.
addFeed({required String url, int? folderId}) Future<DynamiteResponse<ListFeeds, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
deleteFeed({required int feedId}) Future<DynamiteResponse<void, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
listFeeds() Future<DynamiteResponse<ListFeeds, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
markFeedAsRead({required int feedId, required int newestItemId}) Future<DynamiteResponse<void, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
moveFeed({required int feedId, int? folderId}) Future<DynamiteResponse<void, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
renameFeed({required int feedId, required String feedTitle}) Future<DynamiteResponse<void, void>>
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
toString() String
A string representation of this object.
inherited

Operators

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