unFavouriteAllFavouriteMessages static method

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

Unfavorites all the favorite messages.

This static method calls the corresponding unFavouriteAllFavouriteMessages method to unfavorite all favorite messages. 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.

Returns:

Implementation

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