rejectInvite method

Future<RejectInviteResponse> rejectInvite(
  1. [Message? message]
)

Reject invitation to the channel.

Implementation

Future<RejectInviteResponse> rejectInvite([Message? message]) async {
  _checkInitialized();
  return _client.rejectChannelInvite(id!, type, message: message);
}