updateToken method

Future<void> updateToken(
  1. String token
)

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);
  }
}