unFavouriteAllFavouriteMessages method
Implementation
@override
Future<bool?> unFavouriteAllFavouriteMessages() async {
bool? res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod<bool>('unFavouriteAllFavouriteMessages');
return res;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}