import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:http/http.dart'; import '../talkApi.dart'; import 'getChatParams.dart'; import 'getChatResponse.dart'; class GetChat extends TalkApi { String chatToken; GetChatParams params; GetChat(this.chatToken, this.params) : super("v1/chat/$chatToken", null, getParameters: params.toJson()); @override assemble(String raw) { return GetChatResponse.fromJson(jsonDecode(raw)['ocs']); // TODO move "ocs" to superclass } @override Future request(Uri uri, Object? body, Map? headers) { return http.get(uri, headers: headers); } }