loadNextMessages method

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

This method is used to load the next messages.

Implementation

@override
Future<void> loadNextMessages(Function(FlyResponse response) callback) async {
  String? nextMessageResponse;
  try {
    nextMessageResponse =
        await mirrorFlyMethodChannel.invokeMethod('loadNextMessages');
    var res = convertChatMessagesJsonFromString(nextMessageResponse);
    callback.call(FlyResponse(true, res, "load Next messages fetched"));
  } 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)));
  }
}