getArchivedChatList method

  1. @override
Future<void> getArchivedChatList(
  1. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to get the Archived chat list.

Implementation

@override
Future<void> getArchivedChatList(
    Function(FlyResponse response)? callback) async {
  String? res;
  try {
    res = await mirrorFlyMethodChannel.invokeMethod('getArchivedChatList');
    callback?.call(FlyResponse(
        true, convertRecentChatDataJsonFromString(res), FlyConstants.empty));
    // return convertRecentChatDataJsonFromString(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)));
  }
}