reportUser abstract method

Future<void> reportUser({
  1. required String chatId,
  2. required String userId,
})

Reports a user.

  • chatId: ID of the chat
  • userId: ID of the user to report

Returns a future that completes when the report is sent.

Implementation

Future<void> reportUser({
  required String chatId,
  required String userId,
});