deleteMessagesForMe method

Future<void> deleteMessagesForMe(
  1. String jid,
  2. String chatType,
  3. List<String> messageIds,
  4. bool? isMediaDelete,
  5. dynamic callback(
    1. FlyResponse response
    )?,
)

This method is used to delete the messages locally for the user.

Implementation

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