getChatProfileInfos method
Implementation
Future<void> getChatProfileInfos(
BuildContext context, CustomInfoProvider customInfoProvider) async {
for (int i = 0; i < conversationsToForward.length; i++) {
RCKChatProfileInfo chatProfileInfo = await customInfoProvider(
message: null, conversation: conversationsToForward[i]);
chatProfileInfos.add(chatProfileInfo);
}
notifyListeners();
}