deleteRecentChats method
Future<void>
deleteRecentChats(
- List<
String> jidlist, - dynamic callback(
- FlyResponse response
override
This method is used to delete the recent chats for the provided JIDs.
Implementation
@override
Future<void> deleteRecentChats(
List<String> jidlist, Function(FlyResponse response)? callback) async {
// bool? res;
try {
await mirrorFlyMethodChannel
.invokeMethod<bool>('deleteRecentChats', {"jidlist": jidlist});
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}