setClassicIdentity method
Set the user identity for the Classic SDK using a JWT token.
This sets a JwtIdentity on the Classic Zendesk instance.
Implementation
@override
Future<void> setClassicIdentity({required String jwt}) async {
await methodChannel.invokeMethod<void>(
'setClassicIdentity',
{'jwt': jwt},
);
}