setClassicIdentity method

Future<void> setClassicIdentity({
  1. required String jwt,
})

Set the user identity for the Classic SDK using a JWT token.

This sets a JwtIdentity on the Classic Zendesk instance.

Implementation

Future<void> setClassicIdentity({required String jwt}) {
  throw UnimplementedError(
      'setClassicIdentity() has not been implemented.');
}