#8 Added marker to indicate read status in talk chats
This commit is contained in:
@ -4,14 +4,16 @@ import 'package:http/http.dart';
|
||||
|
||||
import '../talkApi.dart';
|
||||
|
||||
class SetFavorite extends TalkApi<void> {
|
||||
class SetFavorite extends TalkApi {
|
||||
String chatToken;
|
||||
bool favoriteState;
|
||||
|
||||
SetFavorite(this.chatToken, this.favoriteState) : super("v4/room/$chatToken/favorite", null);
|
||||
|
||||
@override
|
||||
assemble(String raw) {}
|
||||
assemble(String raw) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@override
|
||||
Future<Response> request(Uri uri, Object? body, Map<String, String>? headers) {
|
||||
|
Reference in New Issue
Block a user