clearChat method

Future<void> clearChat(
  1. String jid,
  2. String chatType,
  3. bool clearExceptStarred,
  4. dynamic callback(
    1. FlyResponse response
    )?,
)

This method is used to clear the chat of a user using JID.

Implementation

Future<void> clearChat(String jid, String chatType, bool clearExceptStarred,
    Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}