getMessagesCount method
Implementation
Future<int?> getMessagesCount() async {
try {
final result =
await TwilioConversations().conversationApi.getMessagesCount(sid);
return result.count;
} on PlatformException catch (err) {
throw TwilioConversations.convertException(err);
}
}