clearAllConversation static method

Future<void> clearAllConversation({
  1. required dynamic flyCallBack(
    1. FlyResponse response
    ),
})

Clears all conversations from the Mirrorfly chat platform.

This method asynchronously clears all conversations from the Mirrorfly chat platform. The flyCallBack parameter is a function that will be called upon completion of the operation. It receives a FlyResponse object as a parameter, which contains information about the success or failure of the operation.

Implementation

static Future<void> clearAllConversation(
    {required Function(FlyResponse response) flyCallBack}) {
  return FlyChatFlutterPlatform.instance.clearAllConversation(flyCallBack);
}