updateToken method
Updates the authentication token for this client.
Implementation
Future<void> updateToken(String token) async {
try {
return TwilioConversations().conversationsClientApi.updateToken(token);
} on PlatformException catch (err) {
throw TwilioConversations.convertException(err);
}
}