21 lines
485 B
Dart
21 lines
485 B
Dart
// hey
|
|
|
|
part of 'api_service.dart';
|
|
|
|
extension ApiServiceComplaints on ApiService {
|
|
void getComplaints() {
|
|
final payload = {"complainSync": 0};
|
|
_sendMessage(162, payload);
|
|
}
|
|
|
|
void sendComplaint(int chatId, String messageId, int typeId, int reasonId) {
|
|
final payload = {
|
|
"reasonId": reasonId,
|
|
"parentId": chatId,
|
|
"typeId": 3,
|
|
"ids": [int.parse(messageId)], // Конвертируем в число
|
|
};
|
|
_sendMessage(161, payload);
|
|
}
|
|
}
|