getMessagesById method

Future<GetMessagesByIdResponse> getMessagesById(
  1. String channelId,
  2. String channelType,
  3. List<String> messageIDs
)

Retrieves a list of messages by messageIDs from the given channelId of type channelType

Implementation

Future<GetMessagesByIdResponse> getMessagesById(
  String channelId,
  String channelType,
  List<String> messageIDs,
) =>
    _chatApi.message.getMessagesById(
      channelId,
      channelType,
      messageIDs,
    );