setChatArchived method

Future<void> setChatArchived(
  1. String jid,
  2. bool isArchived,
  3. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to set the chat is archived.

Implementation

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